Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 1 | /* |
| 2 | * thermal.h ($Revision: 0 $) |
| 3 | * |
| 4 | * Copyright (C) 2008 Intel Corp |
| 5 | * Copyright (C) 2008 Zhang Rui <rui.zhang@intel.com> |
| 6 | * Copyright (C) 2008 Sujith Thomas <sujith.thomas@intel.com> |
| 7 | * |
| 8 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License as published by |
| 11 | * the Free Software Foundation; version 2 of the License. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
| 21 | * |
| 22 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 23 | */ |
| 24 | |
| 25 | #ifndef __THERMAL_H__ |
| 26 | #define __THERMAL_H__ |
| 27 | |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 28 | #include <linux/of.h> |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 29 | #include <linux/idr.h> |
| 30 | #include <linux/device.h> |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 31 | #include <linux/workqueue.h> |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 32 | |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 33 | #define THERMAL_TRIPS_NONE -1 |
| 34 | #define THERMAL_MAX_TRIPS 12 |
| 35 | #define THERMAL_NAME_LENGTH 20 |
| 36 | |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 37 | /* invalid cooling state */ |
| 38 | #define THERMAL_CSTATE_INVALID -1UL |
| 39 | |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 40 | /* No upper/lower limit requirement */ |
Zhang Rui | 57df810 | 2013-02-08 14:52:06 +0800 | [diff] [blame] | 41 | #define THERMAL_NO_LIMIT THERMAL_CSTATE_INVALID |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 42 | |
Zhang Rui | 69cfaa8 | 2015-10-30 16:31:47 +0800 | [diff] [blame] | 43 | /* use value, which < 0K, to indicate an invalid/uninitialized temperature */ |
| 44 | #define THERMAL_TEMP_INVALID -274000 |
| 45 | |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 46 | /* Unit conversion macros */ |
| 47 | #define KELVIN_TO_CELSIUS(t) (long)(((long)t-2732 >= 0) ? \ |
| 48 | ((long)t-2732+5)/10 : ((long)t-2732-5)/10) |
| 49 | #define CELSIUS_TO_KELVIN(t) ((t)*10+2732) |
Aaron Lu | 7b83fd9 | 2014-03-25 10:40:09 +0800 | [diff] [blame] | 50 | #define DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, off) (((t) - (off)) * 100) |
| 51 | #define DECI_KELVIN_TO_MILLICELSIUS(t) DECI_KELVIN_TO_MILLICELSIUS_WITH_OFFSET(t, 2732) |
Aaron Lu | 77e337c | 2014-09-03 15:13:02 +0800 | [diff] [blame] | 52 | #define MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, off) (((t) / 100) + (off)) |
| 53 | #define MILLICELSIUS_TO_DECI_KELVIN(t) MILLICELSIUS_TO_DECI_KELVIN_WITH_OFFSET(t, 2732) |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 54 | |
| 55 | /* Adding event notification support elements */ |
| 56 | #define THERMAL_GENL_FAMILY_NAME "thermal_event" |
| 57 | #define THERMAL_GENL_VERSION 0x01 |
Masatake YAMATO | 73214f5 | 2013-03-19 01:47:28 +0000 | [diff] [blame] | 58 | #define THERMAL_GENL_MCAST_GROUP_NAME "thermal_mc_grp" |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 59 | |
Zhang Rui | 1f53ef1 | 2012-12-12 15:31:37 +0800 | [diff] [blame] | 60 | /* Default Thermal Governor */ |
| 61 | #if defined(CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE) |
| 62 | #define DEFAULT_THERMAL_GOVERNOR "step_wise" |
| 63 | #elif defined(CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE) |
| 64 | #define DEFAULT_THERMAL_GOVERNOR "fair_share" |
| 65 | #elif defined(CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE) |
| 66 | #define DEFAULT_THERMAL_GOVERNOR "user_space" |
| 67 | #endif |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 68 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 69 | struct thermal_zone_device; |
| 70 | struct thermal_cooling_device; |
| 71 | |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 72 | enum thermal_device_mode { |
| 73 | THERMAL_DEVICE_DISABLED = 0, |
| 74 | THERMAL_DEVICE_ENABLED, |
| 75 | }; |
| 76 | |
| 77 | enum thermal_trip_type { |
| 78 | THERMAL_TRIP_ACTIVE = 0, |
| 79 | THERMAL_TRIP_PASSIVE, |
| 80 | THERMAL_TRIP_HOT, |
| 81 | THERMAL_TRIP_CRITICAL, |
| 82 | }; |
| 83 | |
Zhang Rui | 601f3d4 | 2012-06-27 09:54:33 +0800 | [diff] [blame] | 84 | enum thermal_trend { |
| 85 | THERMAL_TREND_STABLE, /* temperature is stable */ |
| 86 | THERMAL_TREND_RAISING, /* temperature is raising */ |
| 87 | THERMAL_TREND_DROPPING, /* temperature is dropping */ |
Zhang Rui | d069015e | 2012-11-19 15:33:51 +0800 | [diff] [blame] | 88 | THERMAL_TREND_RAISE_FULL, /* apply highest cooling action */ |
| 89 | THERMAL_TREND_DROP_FULL, /* apply lowest cooling action */ |
Zhang Rui | 601f3d4 | 2012-06-27 09:54:33 +0800 | [diff] [blame] | 90 | }; |
| 91 | |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 92 | /* Events supported by Thermal Netlink */ |
| 93 | enum events { |
| 94 | THERMAL_AUX0, |
| 95 | THERMAL_AUX1, |
| 96 | THERMAL_CRITICAL, |
| 97 | THERMAL_DEV_FAULT, |
| 98 | }; |
| 99 | |
| 100 | /* attributes of thermal_genl_family */ |
| 101 | enum { |
| 102 | THERMAL_GENL_ATTR_UNSPEC, |
| 103 | THERMAL_GENL_ATTR_EVENT, |
| 104 | __THERMAL_GENL_ATTR_MAX, |
| 105 | }; |
| 106 | #define THERMAL_GENL_ATTR_MAX (__THERMAL_GENL_ATTR_MAX - 1) |
| 107 | |
| 108 | /* commands supported by the thermal_genl_family */ |
| 109 | enum { |
| 110 | THERMAL_GENL_CMD_UNSPEC, |
| 111 | THERMAL_GENL_CMD_EVENT, |
| 112 | __THERMAL_GENL_CMD_MAX, |
| 113 | }; |
| 114 | #define THERMAL_GENL_CMD_MAX (__THERMAL_GENL_CMD_MAX - 1) |
| 115 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 116 | struct thermal_zone_device_ops { |
| 117 | int (*bind) (struct thermal_zone_device *, |
| 118 | struct thermal_cooling_device *); |
| 119 | int (*unbind) (struct thermal_zone_device *, |
| 120 | struct thermal_cooling_device *); |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 121 | int (*get_temp) (struct thermal_zone_device *, unsigned long *); |
| 122 | int (*get_mode) (struct thermal_zone_device *, |
| 123 | enum thermal_device_mode *); |
| 124 | int (*set_mode) (struct thermal_zone_device *, |
| 125 | enum thermal_device_mode); |
| 126 | int (*get_trip_type) (struct thermal_zone_device *, int, |
| 127 | enum thermal_trip_type *); |
| 128 | int (*get_trip_temp) (struct thermal_zone_device *, int, |
| 129 | unsigned long *); |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 130 | int (*set_trip_temp) (struct thermal_zone_device *, int, |
| 131 | unsigned long); |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 132 | int (*get_trip_hyst) (struct thermal_zone_device *, int, |
| 133 | unsigned long *); |
| 134 | int (*set_trip_hyst) (struct thermal_zone_device *, int, |
| 135 | unsigned long); |
Zhang, Rui | 9ec732f | 2008-04-10 16:13:10 +0800 | [diff] [blame] | 136 | int (*get_crit_temp) (struct thermal_zone_device *, unsigned long *); |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 137 | int (*set_emul_temp) (struct thermal_zone_device *, unsigned long); |
Zhang Rui | 601f3d4 | 2012-06-27 09:54:33 +0800 | [diff] [blame] | 138 | int (*get_trend) (struct thermal_zone_device *, int, |
| 139 | enum thermal_trend *); |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 140 | int (*notify) (struct thermal_zone_device *, int, |
| 141 | enum thermal_trip_type); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | struct thermal_cooling_device_ops { |
Matthew Garrett | 6503e5d | 2008-11-27 17:48:13 +0000 | [diff] [blame] | 145 | int (*get_max_state) (struct thermal_cooling_device *, unsigned long *); |
| 146 | int (*get_cur_state) (struct thermal_cooling_device *, unsigned long *); |
| 147 | int (*set_cur_state) (struct thermal_cooling_device *, unsigned long); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 148 | }; |
| 149 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 150 | struct thermal_cooling_device { |
| 151 | int id; |
| 152 | char type[THERMAL_NAME_LENGTH]; |
| 153 | struct device device; |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 154 | struct device_node *np; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 155 | void *devdata; |
Alan Cox | 5b275ce | 2010-11-11 15:27:29 +0000 | [diff] [blame] | 156 | const struct thermal_cooling_device_ops *ops; |
Zhang Rui | ce119f8 | 2012-06-27 14:13:04 +0800 | [diff] [blame] | 157 | bool updated; /* true if the cooling device does not need update */ |
Zhang Rui | f4a821c | 2012-07-24 16:56:21 +0800 | [diff] [blame] | 158 | struct mutex lock; /* protect thermal_instances list */ |
Zhang Rui | b5e4ae6 | 2012-06-27 14:11:52 +0800 | [diff] [blame] | 159 | struct list_head thermal_instances; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 160 | struct list_head node; |
| 161 | }; |
| 162 | |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 163 | struct thermal_attr { |
| 164 | struct device_attribute attr; |
| 165 | char name[THERMAL_NAME_LENGTH]; |
| 166 | }; |
| 167 | |
Javi Merino | c708a98 | 2014-06-25 11:00:12 +0100 | [diff] [blame] | 168 | /** |
| 169 | * struct thermal_zone_device - structure for a thermal zone |
| 170 | * @id: unique id number for each thermal zone |
| 171 | * @type: the thermal zone device type |
| 172 | * @device: &struct device for this thermal zone |
| 173 | * @trip_temp_attrs: attributes for trip points for sysfs: trip temperature |
| 174 | * @trip_type_attrs: attributes for trip points for sysfs: trip type |
| 175 | * @trip_hyst_attrs: attributes for trip points for sysfs: trip hysteresis |
| 176 | * @devdata: private pointer for device private data |
| 177 | * @trips: number of trip points the thermal zone supports |
Zhang Rui | 79a6f04 | 2016-03-18 10:03:24 +0800 | [diff] [blame] | 178 | * @trips_disabled; bitmap for disabled trips |
Javi Merino | c708a98 | 2014-06-25 11:00:12 +0100 | [diff] [blame] | 179 | * @passive_delay: number of milliseconds to wait between polls when |
| 180 | * performing passive cooling. Currenty only used by the |
| 181 | * step-wise governor |
| 182 | * @polling_delay: number of milliseconds to wait between polls when |
| 183 | * checking whether trip points have been crossed (0 for |
| 184 | * interrupt driven systems) |
| 185 | * @temperature: current temperature. This is only for core code, |
| 186 | * drivers should use thermal_zone_get_temp() to get the |
| 187 | * current temperature |
| 188 | * @last_temperature: previous temperature read |
| 189 | * @emul_temperature: emulated temperature when using CONFIG_THERMAL_EMULATION |
| 190 | * @passive: 1 if you've crossed a passive trip point, 0 otherwise. |
| 191 | * Currenty only used by the step-wise governor. |
| 192 | * @forced_passive: If > 0, temperature at which to switch on all ACPI |
| 193 | * processor cooling devices. Currently only used by the |
| 194 | * step-wise governor. |
Chen Yu | 914186f | 2015-10-30 16:32:10 +0800 | [diff] [blame] | 195 | * @need_update: if equals 1, thermal_zone_device_update needs to be invoked. |
Javi Merino | c708a98 | 2014-06-25 11:00:12 +0100 | [diff] [blame] | 196 | * @ops: operations this &thermal_zone_device supports |
| 197 | * @tzp: thermal zone parameters |
| 198 | * @governor: pointer to the governor for this thermal zone |
| 199 | * @thermal_instances: list of &struct thermal_instance of this thermal zone |
| 200 | * @idr: &struct idr to generate unique id for this zone's cooling |
| 201 | * devices |
| 202 | * @lock: lock to protect thermal_instances list |
| 203 | * @node: node in thermal_tz_list (in thermal_core.c) |
| 204 | * @poll_queue: delayed work for polling |
| 205 | */ |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 206 | struct thermal_zone_device { |
| 207 | int id; |
| 208 | char type[THERMAL_NAME_LENGTH]; |
| 209 | struct device device; |
Durgadoss R | c56f5c0 | 2012-07-25 10:10:58 +0800 | [diff] [blame] | 210 | struct thermal_attr *trip_temp_attrs; |
| 211 | struct thermal_attr *trip_type_attrs; |
Durgadoss R | 27365a6 | 2012-07-25 10:10:59 +0800 | [diff] [blame] | 212 | struct thermal_attr *trip_hyst_attrs; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 213 | void *devdata; |
| 214 | int trips; |
Zhang Rui | 79a6f04 | 2016-03-18 10:03:24 +0800 | [diff] [blame] | 215 | unsigned long trips_disabled; /* bitmap for disabled trips */ |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 216 | int passive_delay; |
| 217 | int polling_delay; |
Zhang Rui | 601f3d4 | 2012-06-27 09:54:33 +0800 | [diff] [blame] | 218 | int temperature; |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 219 | int last_temperature; |
Amit Daniel Kachhap | e6e238c | 2013-02-04 00:30:15 +0000 | [diff] [blame] | 220 | int emul_temperature; |
Zhang Rui | 908b9fb | 2012-06-27 14:14:05 +0800 | [diff] [blame] | 221 | int passive; |
Matthew Garrett | 03a971a | 2008-12-03 18:00:38 +0000 | [diff] [blame] | 222 | unsigned int forced_passive; |
Chen Yu | 914186f | 2015-10-30 16:32:10 +0800 | [diff] [blame] | 223 | atomic_t need_update; |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 224 | struct thermal_zone_device_ops *ops; |
Durgadoss R | ef87394 | 2012-09-18 11:04:55 +0530 | [diff] [blame] | 225 | const struct thermal_zone_params *tzp; |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 226 | struct thermal_governor *governor; |
Zhang Rui | 2d37413 | 2012-06-27 10:09:00 +0800 | [diff] [blame] | 227 | struct list_head thermal_instances; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 228 | struct idr idr; |
Javi Merino | c708a98 | 2014-06-25 11:00:12 +0100 | [diff] [blame] | 229 | struct mutex lock; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 230 | struct list_head node; |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 231 | struct delayed_work poll_queue; |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 232 | }; |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 233 | |
Javi Merino | c708a98 | 2014-06-25 11:00:12 +0100 | [diff] [blame] | 234 | /** |
| 235 | * struct thermal_governor - structure that holds thermal governor information |
| 236 | * @name: name of the governor |
| 237 | * @throttle: callback called for every trip point even if temperature is |
| 238 | * below the trip point temperature |
| 239 | * @governor_list: node in thermal_governor_list (in thermal_core.c) |
| 240 | */ |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 241 | struct thermal_governor { |
| 242 | char name[THERMAL_NAME_LENGTH]; |
| 243 | int (*throttle)(struct thermal_zone_device *tz, int trip); |
| 244 | struct list_head governor_list; |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 245 | }; |
| 246 | |
Durgadoss R | ef87394 | 2012-09-18 11:04:55 +0530 | [diff] [blame] | 247 | /* Structure that holds binding parameters for a zone */ |
| 248 | struct thermal_bind_params { |
| 249 | struct thermal_cooling_device *cdev; |
| 250 | |
| 251 | /* |
| 252 | * This is a measure of 'how effectively these devices can |
| 253 | * cool 'this' thermal zone. The shall be determined by platform |
| 254 | * characterization. This is on a 'percentage' scale. |
| 255 | * See Documentation/thermal/sysfs-api.txt for more information. |
| 256 | */ |
| 257 | int weight; |
| 258 | |
| 259 | /* |
| 260 | * This is a bit mask that gives the binding relation between this |
| 261 | * thermal zone and cdev, for a particular trip point. |
| 262 | * See Documentation/thermal/sysfs-api.txt for more information. |
| 263 | */ |
| 264 | int trip_mask; |
Eduardo Valentin | a8892d83 | 2013-07-16 15:26:28 -0400 | [diff] [blame] | 265 | |
| 266 | /* |
| 267 | * This is an array of cooling state limits. Must have exactly |
| 268 | * 2 * thermal_zone.number_of_trip_points. It is an array consisting |
| 269 | * of tuples <lower-state upper-state> of state limits. Each trip |
| 270 | * will be associated with one state limit tuple when binding. |
| 271 | * A NULL pointer means <THERMAL_NO_LIMITS THERMAL_NO_LIMITS> |
| 272 | * on all trips. |
| 273 | */ |
| 274 | unsigned long *binding_limits; |
Durgadoss R | ef87394 | 2012-09-18 11:04:55 +0530 | [diff] [blame] | 275 | int (*match) (struct thermal_zone_device *tz, |
| 276 | struct thermal_cooling_device *cdev); |
| 277 | }; |
| 278 | |
| 279 | /* Structure to define Thermal Zone parameters */ |
| 280 | struct thermal_zone_params { |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 281 | char governor_name[THERMAL_NAME_LENGTH]; |
Eduardo Valentin | ccba4ff | 2013-08-15 11:34:17 -0400 | [diff] [blame] | 282 | |
| 283 | /* |
| 284 | * a boolean to indicate if the thermal to hwmon sysfs interface |
| 285 | * is required. when no_hwmon == false, a hwmon sysfs interface |
| 286 | * will be created. when no_hwmon == true, nothing will be done |
| 287 | */ |
| 288 | bool no_hwmon; |
| 289 | |
Durgadoss R | ef87394 | 2012-09-18 11:04:55 +0530 | [diff] [blame] | 290 | int num_tbps; /* Number of tbp entries */ |
| 291 | struct thermal_bind_params *tbp; |
| 292 | }; |
| 293 | |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 294 | struct thermal_genl_event { |
| 295 | u32 orig; |
| 296 | enum events event; |
| 297 | }; |
R.Durgadoss | 4cb1872 | 2010-10-27 03:33:29 +0530 | [diff] [blame] | 298 | |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 299 | /* Function declarations */ |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 300 | #ifdef CONFIG_THERMAL_OF |
| 301 | struct thermal_zone_device * |
| 302 | thermal_zone_of_sensor_register(struct device *dev, int id, |
| 303 | void *data, int (*get_temp)(void *, long *), |
| 304 | int (*get_trend)(void *, long *)); |
| 305 | void thermal_zone_of_sensor_unregister(struct device *dev, |
| 306 | struct thermal_zone_device *tz); |
| 307 | #else |
| 308 | static inline struct thermal_zone_device * |
| 309 | thermal_zone_of_sensor_register(struct device *dev, int id, |
| 310 | void *data, int (*get_temp)(void *, long *), |
| 311 | int (*get_trend)(void *, long *)) |
| 312 | { |
| 313 | return NULL; |
| 314 | } |
| 315 | |
| 316 | static inline |
| 317 | void thermal_zone_of_sensor_unregister(struct device *dev, |
| 318 | struct thermal_zone_device *tz) |
| 319 | { |
| 320 | } |
| 321 | |
| 322 | #endif |
Anton Vorontsov | 4b1bf58 | 2012-07-31 04:39:30 -0700 | [diff] [blame] | 323 | struct thermal_zone_device *thermal_zone_device_register(const char *, int, int, |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 324 | void *, struct thermal_zone_device_ops *, |
Durgadoss R | 50125a9 | 2012-09-18 11:04:56 +0530 | [diff] [blame] | 325 | const struct thermal_zone_params *, int, int); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 326 | void thermal_zone_device_unregister(struct thermal_zone_device *); |
| 327 | |
| 328 | int thermal_zone_bind_cooling_device(struct thermal_zone_device *, int, |
Zhang Rui | 9d99842 | 2012-06-26 16:35:57 +0800 | [diff] [blame] | 329 | struct thermal_cooling_device *, |
| 330 | unsigned long, unsigned long); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 331 | int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int, |
| 332 | struct thermal_cooling_device *); |
Matthew Garrett | b1569e9 | 2008-12-03 17:55:32 +0000 | [diff] [blame] | 333 | void thermal_zone_device_update(struct thermal_zone_device *); |
Durgadoss R | 2306408 | 2012-09-18 11:04:52 +0530 | [diff] [blame] | 334 | |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 335 | struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, |
Alan Cox | 5b275ce | 2010-11-11 15:27:29 +0000 | [diff] [blame] | 336 | const struct thermal_cooling_device_ops *); |
Eduardo Valentin | a116b5d | 2013-09-26 15:55:01 -0400 | [diff] [blame] | 337 | struct thermal_cooling_device * |
| 338 | thermal_of_cooling_device_register(struct device_node *np, char *, void *, |
| 339 | const struct thermal_cooling_device_ops *); |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 340 | void thermal_cooling_device_unregister(struct thermal_cooling_device *); |
Eduardo Valentin | 63c4d91 | 2013-04-05 12:32:28 +0000 | [diff] [blame] | 341 | struct thermal_zone_device *thermal_zone_get_zone_by_name(const char *name); |
Eduardo Valentin | 837b26b | 2013-04-05 12:32:29 +0000 | [diff] [blame] | 342 | int thermal_zone_get_temp(struct thermal_zone_device *tz, unsigned long *temp); |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 343 | |
Durgadoss R | 9b4298a | 2012-09-18 11:04:54 +0530 | [diff] [blame] | 344 | int get_tz_trend(struct thermal_zone_device *, int); |
| 345 | struct thermal_instance *get_thermal_instance(struct thermal_zone_device *, |
| 346 | struct thermal_cooling_device *, int); |
Durgadoss R | dc76548 | 2012-09-18 11:05:00 +0530 | [diff] [blame] | 347 | void thermal_cdev_update(struct thermal_cooling_device *); |
Eduardo Valentin | 7b73c99 | 2013-04-23 21:48:14 +0000 | [diff] [blame] | 348 | void thermal_notify_framework(struct thermal_zone_device *, int); |
Durgadoss R | a4a1548 | 2012-09-18 11:04:57 +0530 | [diff] [blame] | 349 | |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 350 | #ifdef CONFIG_NET |
Eduardo Valentin | 8ab3e6a | 2013-01-02 15:29:39 +0000 | [diff] [blame] | 351 | extern int thermal_generate_netlink_event(struct thermal_zone_device *tz, |
| 352 | enum events event); |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 353 | #else |
Ezequiel Garcia | f8b5870 | 2013-03-20 21:38:07 +0000 | [diff] [blame] | 354 | static inline int thermal_generate_netlink_event(struct thermal_zone_device *tz, |
Eduardo Valentin | 8ab3e6a | 2013-01-02 15:29:39 +0000 | [diff] [blame] | 355 | enum events event) |
Rafael J. Wysocki | af06216 | 2011-03-01 01:12:19 +0100 | [diff] [blame] | 356 | { |
| 357 | return 0; |
| 358 | } |
| 359 | #endif |
Zhang Rui | 203d3d4 | 2008-01-17 15:51:08 +0800 | [diff] [blame] | 360 | |
Len Brown | a0dd25b | 2008-02-09 04:01:48 -0500 | [diff] [blame] | 361 | #endif /* __THERMAL_H__ */ |