Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 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; |
Zhang Rui | bb431ba | 2015-10-30 16:31:47 +0800 | [diff] [blame] | 44 | bool initialized; |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 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; |
Javi Merino | db91651 | 2015-02-18 16:04:24 +0000 | [diff] [blame] | 50 | char weight_attr_name[THERMAL_NAME_LENGTH]; |
| 51 | struct device_attribute weight_attr; |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 52 | struct list_head tz_node; /* node in tz->thermal_instances */ |
| 53 | struct list_head cdev_node; /* node in cdev->thermal_instances */ |
Kapileshwar Singh | 6cd9e9f | 2015-02-18 16:04:21 +0000 | [diff] [blame] | 54 | unsigned int weight; /* The weight of the cooling device */ |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 55 | }; |
| 56 | |
Eduardo Valentin | ba78da4 | 2016-11-07 21:08:57 -0800 | [diff] [blame] | 57 | #define to_thermal_zone(_dev) \ |
| 58 | container_of(_dev, struct thermal_zone_device, device) |
| 59 | |
Eduardo Valentin | 99ea2ef | 2016-11-07 21:09:01 -0800 | [diff] [blame^] | 60 | #define to_cooling_device(_dev) \ |
| 61 | container_of(_dev, struct thermal_cooling_device, device) |
| 62 | |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 63 | int thermal_register_governor(struct thermal_governor *); |
| 64 | void thermal_unregister_governor(struct thermal_governor *); |
Eduardo Valentin | 3d0055d | 2016-11-07 21:08:54 -0800 | [diff] [blame] | 65 | void thermal_zone_device_rebind_exception(struct thermal_zone_device *, |
| 66 | const char *, size_t); |
| 67 | void thermal_zone_device_unbind_exception(struct thermal_zone_device *, |
| 68 | const char *, size_t); |
Eduardo Valentin | 6b88520 | 2016-11-07 21:08:55 -0800 | [diff] [blame] | 69 | int thermal_zone_device_set_policy(struct thermal_zone_device *, char *); |
Eduardo Valentin | 97d2423 | 2016-11-07 21:08:56 -0800 | [diff] [blame] | 70 | int thermal_build_list_of_policies(char *buf); |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 71 | |
Eduardo Valentin | a369ee8 | 2016-11-07 21:09:00 -0800 | [diff] [blame] | 72 | /* sysfs I/F */ |
| 73 | int thermal_zone_create_device_groups(struct thermal_zone_device *, int); |
| 74 | |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 75 | #ifdef CONFIG_THERMAL_GOV_STEP_WISE |
| 76 | int thermal_gov_step_wise_register(void); |
| 77 | void thermal_gov_step_wise_unregister(void); |
| 78 | #else |
| 79 | static inline int thermal_gov_step_wise_register(void) { return 0; } |
| 80 | static inline void thermal_gov_step_wise_unregister(void) {} |
| 81 | #endif /* CONFIG_THERMAL_GOV_STEP_WISE */ |
| 82 | |
| 83 | #ifdef CONFIG_THERMAL_GOV_FAIR_SHARE |
| 84 | int thermal_gov_fair_share_register(void); |
| 85 | void thermal_gov_fair_share_unregister(void); |
| 86 | #else |
| 87 | static inline int thermal_gov_fair_share_register(void) { return 0; } |
| 88 | static inline void thermal_gov_fair_share_unregister(void) {} |
| 89 | #endif /* CONFIG_THERMAL_GOV_FAIR_SHARE */ |
| 90 | |
Peter Feuerer | e4dbf98 | 2014-07-22 17:37:13 +0200 | [diff] [blame] | 91 | #ifdef CONFIG_THERMAL_GOV_BANG_BANG |
| 92 | int thermal_gov_bang_bang_register(void); |
| 93 | void thermal_gov_bang_bang_unregister(void); |
| 94 | #else |
| 95 | static inline int thermal_gov_bang_bang_register(void) { return 0; } |
| 96 | static inline void thermal_gov_bang_bang_unregister(void) {} |
| 97 | #endif /* CONFIG_THERMAL_GOV_BANG_BANG */ |
| 98 | |
Zhang Rui | 80a26a5 | 2013-03-26 16:38:29 +0800 | [diff] [blame] | 99 | #ifdef CONFIG_THERMAL_GOV_USER_SPACE |
| 100 | int thermal_gov_user_space_register(void); |
| 101 | void thermal_gov_user_space_unregister(void); |
| 102 | #else |
| 103 | static inline int thermal_gov_user_space_register(void) { return 0; } |
| 104 | static inline void thermal_gov_user_space_unregister(void) {} |
| 105 | #endif /* CONFIG_THERMAL_GOV_USER_SPACE */ |
| 106 | |
Javi Merino | 6b775e8 | 2015-03-02 17:17:19 +0000 | [diff] [blame] | 107 | #ifdef CONFIG_THERMAL_GOV_POWER_ALLOCATOR |
| 108 | int thermal_gov_power_allocator_register(void); |
| 109 | void thermal_gov_power_allocator_unregister(void); |
| 110 | #else |
| 111 | static inline int thermal_gov_power_allocator_register(void) { return 0; } |
| 112 | static inline void thermal_gov_power_allocator_unregister(void) {} |
| 113 | #endif /* CONFIG_THERMAL_GOV_POWER_ALLOCATOR */ |
| 114 | |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 115 | /* device tree support */ |
| 116 | #ifdef CONFIG_THERMAL_OF |
| 117 | int of_parse_thermal_zones(void); |
| 118 | void of_thermal_destroy_zones(void); |
Lukasz Majewski | 08dab66 | 2014-12-08 18:04:17 +0100 | [diff] [blame] | 119 | int of_thermal_get_ntrips(struct thermal_zone_device *); |
Lukasz Majewski | a9bf2cc | 2014-12-08 18:04:18 +0100 | [diff] [blame] | 120 | bool of_thermal_is_trip_valid(struct thermal_zone_device *, int); |
Geert Uytterhoeven | ebc3193 | 2015-01-03 22:56:56 +0100 | [diff] [blame] | 121 | const struct thermal_trip * |
Lukasz Majewski | ce8be77 | 2014-12-08 18:04:20 +0100 | [diff] [blame] | 122 | of_thermal_get_trip_points(struct thermal_zone_device *); |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 123 | #else |
| 124 | static inline int of_parse_thermal_zones(void) { return 0; } |
| 125 | static inline void of_thermal_destroy_zones(void) { } |
Lukasz Majewski | 08dab66 | 2014-12-08 18:04:17 +0100 | [diff] [blame] | 126 | static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz) |
| 127 | { |
| 128 | return 0; |
| 129 | } |
Lukasz Majewski | a9bf2cc | 2014-12-08 18:04:18 +0100 | [diff] [blame] | 130 | static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz, |
| 131 | int trip) |
| 132 | { |
Joe Perches | ce1d949 | 2015-03-30 10:43:22 -0700 | [diff] [blame] | 133 | return false; |
Lukasz Majewski | a9bf2cc | 2014-12-08 18:04:18 +0100 | [diff] [blame] | 134 | } |
Geert Uytterhoeven | ebc3193 | 2015-01-03 22:56:56 +0100 | [diff] [blame] | 135 | static inline const struct thermal_trip * |
Lukasz Majewski | ce8be77 | 2014-12-08 18:04:20 +0100 | [diff] [blame] | 136 | of_thermal_get_trip_points(struct thermal_zone_device *tz) |
| 137 | { |
| 138 | return NULL; |
| 139 | } |
Eduardo Valentin | 4e5e470 | 2013-07-03 15:35:39 -0400 | [diff] [blame] | 140 | #endif |
| 141 | |
Durgadoss R | 71350db | 2012-09-18 11:04:53 +0530 | [diff] [blame] | 142 | #endif /* __THERMAL_CORE_H__ */ |