blob: 5a0b77b5cddea7ece26095fce4dc783133e073ff [file] [log] [blame]
Durgadoss R71350db2012-09-18 11:04:53 +05301/*
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;
Zhang Ruibb431ba2015-10-30 16:31:47 +080044 bool initialized;
Durgadoss R71350db2012-09-18 11:04:53 +053045 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;
Javi Merinodb916512015-02-18 16:04:24 +000050 char weight_attr_name[THERMAL_NAME_LENGTH];
51 struct device_attribute weight_attr;
Ram Chandrasekara66af1452017-03-28 15:16:39 -060052 char upper_attr_name[THERMAL_NAME_LENGTH];
53 struct device_attribute upper_attr;
54 char lower_attr_name[THERMAL_NAME_LENGTH];
55 struct device_attribute lower_attr;
Durgadoss R71350db2012-09-18 11:04:53 +053056 struct list_head tz_node; /* node in tz->thermal_instances */
57 struct list_head cdev_node; /* node in cdev->thermal_instances */
Kapileshwar Singh6cd9e9f2015-02-18 16:04:21 +000058 unsigned int weight; /* The weight of the cooling device */
Durgadoss R71350db2012-09-18 11:04:53 +053059};
60
Zhang Rui80a26a52013-03-26 16:38:29 +080061int thermal_register_governor(struct thermal_governor *);
62void thermal_unregister_governor(struct thermal_governor *);
63
64#ifdef CONFIG_THERMAL_GOV_STEP_WISE
65int thermal_gov_step_wise_register(void);
66void thermal_gov_step_wise_unregister(void);
67#else
68static inline int thermal_gov_step_wise_register(void) { return 0; }
69static inline void thermal_gov_step_wise_unregister(void) {}
70#endif /* CONFIG_THERMAL_GOV_STEP_WISE */
71
72#ifdef CONFIG_THERMAL_GOV_FAIR_SHARE
73int thermal_gov_fair_share_register(void);
74void thermal_gov_fair_share_unregister(void);
75#else
76static inline int thermal_gov_fair_share_register(void) { return 0; }
77static inline void thermal_gov_fair_share_unregister(void) {}
78#endif /* CONFIG_THERMAL_GOV_FAIR_SHARE */
79
Peter Feuerere4dbf982014-07-22 17:37:13 +020080#ifdef CONFIG_THERMAL_GOV_BANG_BANG
81int thermal_gov_bang_bang_register(void);
82void thermal_gov_bang_bang_unregister(void);
83#else
84static inline int thermal_gov_bang_bang_register(void) { return 0; }
85static inline void thermal_gov_bang_bang_unregister(void) {}
86#endif /* CONFIG_THERMAL_GOV_BANG_BANG */
87
Zhang Rui80a26a52013-03-26 16:38:29 +080088#ifdef CONFIG_THERMAL_GOV_USER_SPACE
89int thermal_gov_user_space_register(void);
90void thermal_gov_user_space_unregister(void);
91#else
92static inline int thermal_gov_user_space_register(void) { return 0; }
93static inline void thermal_gov_user_space_unregister(void) {}
94#endif /* CONFIG_THERMAL_GOV_USER_SPACE */
95
Javi Merino6b775e82015-03-02 17:17:19 +000096#ifdef CONFIG_THERMAL_GOV_POWER_ALLOCATOR
97int thermal_gov_power_allocator_register(void);
98void thermal_gov_power_allocator_unregister(void);
99#else
100static inline int thermal_gov_power_allocator_register(void) { return 0; }
101static inline void thermal_gov_power_allocator_unregister(void) {}
102#endif /* CONFIG_THERMAL_GOV_POWER_ALLOCATOR */
103
Ram Chandrasekar6d44a342016-07-07 11:09:52 -0600104#ifdef CONFIG_THERMAL_GOV_LOW_LIMITS
105int thermal_gov_low_limits_register(void);
106void thermal_gov_low_limits_unregister(void);
107#else
108static inline int thermal_gov_low_limits_register(void) { return 0; }
109static inline void thermal_gov_low_limits_unregister(void) {}
110#endif /* CONFIG_THERMAL_GOV_LOW_LIMITS */
111
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400112/* device tree support */
113#ifdef CONFIG_THERMAL_OF
114int of_parse_thermal_zones(void);
115void of_thermal_destroy_zones(void);
Lukasz Majewski08dab662014-12-08 18:04:17 +0100116int of_thermal_get_ntrips(struct thermal_zone_device *);
Lukasz Majewskia9bf2cc2014-12-08 18:04:18 +0100117bool of_thermal_is_trip_valid(struct thermal_zone_device *, int);
Geert Uytterhoevenebc31932015-01-03 22:56:56 +0100118const struct thermal_trip *
Lukasz Majewskice8be772014-12-08 18:04:20 +0100119of_thermal_get_trip_points(struct thermal_zone_device *);
Lina Iyer01ffea22016-07-27 13:46:32 -0600120int of_thermal_aggregate_trip(struct thermal_zone_device *tz,
121 enum thermal_trip_type type,
122 int *low, int *high);
Ram Chandrasekarcf543602017-03-13 22:59:01 -0600123void of_thermal_handle_trip(struct thermal_zone_device *tz);
Ram Chandrasekarbae93a62018-11-02 12:23:40 -0600124void of_thermal_handle_trip_temp(struct thermal_zone_device *tz,
125 int trip_temp);
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400126#else
127static inline int of_parse_thermal_zones(void) { return 0; }
128static inline void of_thermal_destroy_zones(void) { }
Lukasz Majewski08dab662014-12-08 18:04:17 +0100129static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
130{
131 return 0;
132}
Lukasz Majewskia9bf2cc2014-12-08 18:04:18 +0100133static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz,
134 int trip)
135{
Joe Perchesce1d9492015-03-30 10:43:22 -0700136 return false;
Lukasz Majewskia9bf2cc2014-12-08 18:04:18 +0100137}
Geert Uytterhoevenebc31932015-01-03 22:56:56 +0100138static inline const struct thermal_trip *
Lukasz Majewskice8be772014-12-08 18:04:20 +0100139of_thermal_get_trip_points(struct thermal_zone_device *tz)
140{
141 return NULL;
142}
Lina Iyer01ffea22016-07-27 13:46:32 -0600143static inline int of_thermal_aggregate_trip(struct thermal_zone_device *tz,
144 enum thermal_trip_type type,
145 int *low, int *high)
146{
147 return -ENODEV;
148}
Ram Chandrasekarcf543602017-03-13 22:59:01 -0600149static inline
150void of_thermal_handle_trip(struct thermal_zone_device *tz)
151{ }
Ram Chandrasekarbae93a62018-11-02 12:23:40 -0600152static inline
153void of_thermal_handle_trip_temp(struct thermal_zone_device *tz,
154 int trip_temp)
155{ }
Eduardo Valentin4e5e4702013-07-03 15:35:39 -0400156#endif
157
Durgadoss R71350db2012-09-18 11:04:53 +0530158#endif /* __THERMAL_CORE_H__ */