thermal_core.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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. #ifndef __THERMAL_CORE_H__
  24. #define __THERMAL_CORE_H__
  25. #include <linux/device.h>
  26. #include <linux/thermal.h>
  27. /* Initial state of a cooling device during binding */
  28. #define THERMAL_NO_TARGET -1UL
  29. /*
  30. * This structure is used to describe the behavior of
  31. * a certain cooling device on a certain trip point
  32. * in a certain thermal zone
  33. */
  34. struct thermal_instance {
  35. int id;
  36. char name[THERMAL_NAME_LENGTH];
  37. struct thermal_zone_device *tz;
  38. struct thermal_cooling_device *cdev;
  39. int trip;
  40. bool initialized;
  41. unsigned long upper; /* Highest cooling state for this trip point */
  42. unsigned long lower; /* Lowest cooling state for this trip point */
  43. unsigned long target; /* expected cooling state */
  44. char attr_name[THERMAL_NAME_LENGTH];
  45. struct device_attribute attr;
  46. char weight_attr_name[THERMAL_NAME_LENGTH];
  47. struct device_attribute weight_attr;
  48. struct list_head tz_node; /* node in tz->thermal_instances */
  49. struct list_head cdev_node; /* node in cdev->thermal_instances */
  50. unsigned int weight; /* The weight of the cooling device */
  51. };
  52. #define to_thermal_zone(_dev) \
  53. container_of(_dev, struct thermal_zone_device, device)
  54. #define to_cooling_device(_dev) \
  55. container_of(_dev, struct thermal_cooling_device, device)
  56. int thermal_register_governor(struct thermal_governor *);
  57. void thermal_unregister_governor(struct thermal_governor *);
  58. void thermal_zone_device_rebind_exception(struct thermal_zone_device *,
  59. const char *, size_t);
  60. void thermal_zone_device_unbind_exception(struct thermal_zone_device *,
  61. const char *, size_t);
  62. int thermal_zone_device_set_policy(struct thermal_zone_device *, char *);
  63. int thermal_build_list_of_policies(char *buf);
  64. /* sysfs I/F */
  65. int thermal_zone_create_device_groups(struct thermal_zone_device *, int);
  66. void thermal_zone_destroy_device_groups(struct thermal_zone_device *);
  67. void thermal_cooling_device_setup_sysfs(struct thermal_cooling_device *);
  68. void thermal_cooling_device_destroy_sysfs(struct thermal_cooling_device *cdev);
  69. /* used only at binding time */
  70. ssize_t
  71. thermal_cooling_device_trip_point_show(struct device *,
  72. struct device_attribute *, char *);
  73. ssize_t thermal_cooling_device_weight_show(struct device *,
  74. struct device_attribute *, char *);
  75. ssize_t thermal_cooling_device_weight_store(struct device *,
  76. struct device_attribute *,
  77. const char *, size_t);
  78. #ifdef CONFIG_THERMAL_STATISTICS
  79. void thermal_cooling_device_stats_update(struct thermal_cooling_device *cdev,
  80. unsigned long new_state);
  81. #else
  82. static inline void
  83. thermal_cooling_device_stats_update(struct thermal_cooling_device *cdev,
  84. unsigned long new_state) {}
  85. #endif /* CONFIG_THERMAL_STATISTICS */
  86. #ifdef CONFIG_THERMAL_GOV_STEP_WISE
  87. int thermal_gov_step_wise_register(void);
  88. void thermal_gov_step_wise_unregister(void);
  89. #else
  90. static inline int thermal_gov_step_wise_register(void) { return 0; }
  91. static inline void thermal_gov_step_wise_unregister(void) {}
  92. #endif /* CONFIG_THERMAL_GOV_STEP_WISE */
  93. #ifdef CONFIG_THERMAL_GOV_FAIR_SHARE
  94. int thermal_gov_fair_share_register(void);
  95. void thermal_gov_fair_share_unregister(void);
  96. #else
  97. static inline int thermal_gov_fair_share_register(void) { return 0; }
  98. static inline void thermal_gov_fair_share_unregister(void) {}
  99. #endif /* CONFIG_THERMAL_GOV_FAIR_SHARE */
  100. #ifdef CONFIG_THERMAL_GOV_BANG_BANG
  101. int thermal_gov_bang_bang_register(void);
  102. void thermal_gov_bang_bang_unregister(void);
  103. #else
  104. static inline int thermal_gov_bang_bang_register(void) { return 0; }
  105. static inline void thermal_gov_bang_bang_unregister(void) {}
  106. #endif /* CONFIG_THERMAL_GOV_BANG_BANG */
  107. #ifdef CONFIG_THERMAL_GOV_USER_SPACE
  108. int thermal_gov_user_space_register(void);
  109. void thermal_gov_user_space_unregister(void);
  110. #else
  111. static inline int thermal_gov_user_space_register(void) { return 0; }
  112. static inline void thermal_gov_user_space_unregister(void) {}
  113. #endif /* CONFIG_THERMAL_GOV_USER_SPACE */
  114. #ifdef CONFIG_THERMAL_GOV_POWER_ALLOCATOR
  115. int thermal_gov_power_allocator_register(void);
  116. void thermal_gov_power_allocator_unregister(void);
  117. #else
  118. static inline int thermal_gov_power_allocator_register(void) { return 0; }
  119. static inline void thermal_gov_power_allocator_unregister(void) {}
  120. #endif /* CONFIG_THERMAL_GOV_POWER_ALLOCATOR */
  121. /* device tree support */
  122. #ifdef CONFIG_THERMAL_OF
  123. int of_parse_thermal_zones(void);
  124. void of_thermal_destroy_zones(void);
  125. int of_thermal_get_ntrips(struct thermal_zone_device *);
  126. bool of_thermal_is_trip_valid(struct thermal_zone_device *, int);
  127. const struct thermal_trip *
  128. of_thermal_get_trip_points(struct thermal_zone_device *);
  129. #else
  130. static inline int of_parse_thermal_zones(void) { return 0; }
  131. static inline void of_thermal_destroy_zones(void) { }
  132. static inline int of_thermal_get_ntrips(struct thermal_zone_device *tz)
  133. {
  134. return 0;
  135. }
  136. static inline bool of_thermal_is_trip_valid(struct thermal_zone_device *tz,
  137. int trip)
  138. {
  139. return false;
  140. }
  141. static inline const struct thermal_trip *
  142. of_thermal_get_trip_points(struct thermal_zone_device *tz)
  143. {
  144. return NULL;
  145. }
  146. #endif
  147. #endif /* __THERMAL_CORE_H__ */