thermal_core.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. unsigned long upper; /* Highest cooling state for this trip point */
  41. unsigned long lower; /* Lowest cooling state for this trip point */
  42. unsigned long target; /* expected cooling state */
  43. char attr_name[THERMAL_NAME_LENGTH];
  44. struct device_attribute attr;
  45. struct list_head tz_node; /* node in tz->thermal_instances */
  46. struct list_head cdev_node; /* node in cdev->thermal_instances */
  47. };
  48. #endif /* __THERMAL_CORE_H__ */