]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/thermal/thermal_core.h
x86/microcode: Do not exit early from __reload_late()
[mirror_ubuntu-bionic-kernel.git] / drivers / thermal / thermal_core.h
CommitLineData
71350db4
D
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 */
38struct 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;
bb431ba2 44 bool initialized;
71350db4
D
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;
db916513
JM
50 char weight_attr_name[THERMAL_NAME_LENGTH];
51 struct device_attribute weight_attr;
71350db4
D
52 struct list_head tz_node; /* node in tz->thermal_instances */
53 struct list_head cdev_node; /* node in cdev->thermal_instances */
6cd9e9f6 54 unsigned int weight; /* The weight of the cooling device */
71350db4
D
55};
56
ba78da44
EV
57#define to_thermal_zone(_dev) \
58 container_of(_dev, struct thermal_zone_device, device)
59
99ea2eff
EV
60#define to_cooling_device(_dev) \
61 container_of(_dev, struct thermal_cooling_device, device)
62
80a26a5c
ZR
63int thermal_register_governor(struct thermal_governor *);
64void thermal_unregister_governor(struct thermal_governor *);
3d0055d2
EV
65void thermal_zone_device_rebind_exception(struct thermal_zone_device *,
66 const char *, size_t);
67void thermal_zone_device_unbind_exception(struct thermal_zone_device *,
68 const char *, size_t);
6b885202 69int thermal_zone_device_set_policy(struct thermal_zone_device *, char *);
97d2423b 70int thermal_build_list_of_policies(char *buf);
80a26a5c 71
a369ee88
EV
72/* sysfs I/F */
73int thermal_zone_create_device_groups(struct thermal_zone_device *, int);
32fa5ba3 74void thermal_zone_destroy_device_groups(struct thermal_zone_device *);
45cf2ec9
EV
75void thermal_cooling_device_setup_sysfs(struct thermal_cooling_device *);
76/* used only at binding time */
77ssize_t
78thermal_cooling_device_trip_point_show(struct device *,
79 struct device_attribute *, char *);
80ssize_t thermal_cooling_device_weight_show(struct device *,
81 struct device_attribute *, char *);
82
83ssize_t thermal_cooling_device_weight_store(struct device *,
84 struct device_attribute *,
85 const char *, size_t);
a369ee88 86
80a26a5c
ZR
87#ifdef CONFIG_THERMAL_GOV_STEP_WISE
88int thermal_gov_step_wise_register(void);
89void thermal_gov_step_wise_unregister(void);
90#else
91static inline int thermal_gov_step_wise_register(void) { return 0; }
92static inline void thermal_gov_step_wise_unregister(void) {}
93#endif /* CONFIG_THERMAL_GOV_STEP_WISE */
94
95#ifdef CONFIG_THERMAL_GOV_FAIR_SHARE
96int thermal_gov_fair_share_register(void);
97void thermal_gov_fair_share_unregister(void);
98#else
99static inline int thermal_gov_fair_share_register(void) { return 0; }
100static inline void thermal_gov_fair_share_unregister(void) {}
101#endif /* CONFIG_THERMAL_GOV_FAIR_SHARE */
102
e4dbf98f
PF
103#ifdef CONFIG_THERMAL_GOV_BANG_BANG
104int thermal_gov_bang_bang_register(void);
105void thermal_gov_bang_bang_unregister(void);
106#else
107static inline int thermal_gov_bang_bang_register(void) { return 0; }
108static inline void thermal_gov_bang_bang_unregister(void) {}
109#endif /* CONFIG_THERMAL_GOV_BANG_BANG */
110
80a26a5c
ZR
111#ifdef CONFIG_THERMAL_GOV_USER_SPACE
112int thermal_gov_user_space_register(void);
113void thermal_gov_user_space_unregister(void);
114#else
115static inline int thermal_gov_user_space_register(void) { return 0; }
116static inline void thermal_gov_user_space_unregister(void) {}
117#endif /* CONFIG_THERMAL_GOV_USER_SPACE */
118
6b775e87
JM
119#ifdef CONFIG_THERMAL_GOV_POWER_ALLOCATOR
120int thermal_gov_power_allocator_register(void);
121void thermal_gov_power_allocator_unregister(void);
122#else
123static inline int thermal_gov_power_allocator_register(void) { return 0; }
124static inline void thermal_gov_power_allocator_unregister(void) {}
125#endif /* CONFIG_THERMAL_GOV_POWER_ALLOCATOR */
126
4e5e4705
EV
127/* device tree support */
128#ifdef CONFIG_THERMAL_OF
129int of_parse_thermal_zones(void);
130void of_thermal_destroy_zones(void);
08dab66e 131int of_thermal_get_ntrips(struct thermal_zone_device *);
a9bf2cc4 132bool of_thermal_is_trip_valid(struct thermal_zone_device *, int);
ebc3193a 133const struct thermal_trip *
ce8be778 134of_thermal_get_trip_points(struct thermal_zone_device *);
4e5e4705
EV
135#else
136static inline int of_parse_thermal_zones(void) { return 0; }
137static inline void of_thermal_destroy_zones(void) { }
08dab66e
LM
138static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
139{
140 return 0;
141}
a9bf2cc4
LM
142static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz,
143 int trip)
144{
ce1d9491 145 return false;
a9bf2cc4 146}
ebc3193a 147static inline const struct thermal_trip *
ce8be778
LM
148of_thermal_get_trip_points(struct thermal_zone_device *tz)
149{
150 return NULL;
151}
4e5e4705
EV
152#endif
153
71350db4 154#endif /* __THERMAL_CORE_H__ */