diff options
author | Durgadoss R <dugardoss.r@intel.com> | 2012-07-24 22:10:59 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-07-24 23:19:26 -0400 |
commit | 27365a6c7d64a3bba22ee62109e4a071bbd7f933 (patch) | |
tree | d8a5c1bf246171e2983b7f801b64a758fa6f62e3 /include | |
parent | c56f5c0342dfee11a1a13d2f5bb7618de5b17590 (diff) |
Thermal: Add Hysteresis attributes
The Linux Thermal Framework does not support hysteresis
attributes. Most thermal sensors, today, have a
hysteresis value associated with trip points.
This patch adds hysteresis attributes on a per-trip-point
basis, to the Thermal Framework. These attributes are
optionally writable.
Signed-off-by: Durgadoss R <durgadoss.r@intel.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/thermal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/thermal.h b/include/linux/thermal.h index 6eaf9146c847..cfc8d908892e 100644 --- a/include/linux/thermal.h +++ b/include/linux/thermal.h | |||
@@ -60,6 +60,10 @@ struct thermal_zone_device_ops { | |||
60 | unsigned long *); | 60 | unsigned long *); |
61 | int (*set_trip_temp) (struct thermal_zone_device *, int, | 61 | int (*set_trip_temp) (struct thermal_zone_device *, int, |
62 | unsigned long); | 62 | unsigned long); |
63 | int (*get_trip_hyst) (struct thermal_zone_device *, int, | ||
64 | unsigned long *); | ||
65 | int (*set_trip_hyst) (struct thermal_zone_device *, int, | ||
66 | unsigned long); | ||
63 | int (*get_crit_temp) (struct thermal_zone_device *, unsigned long *); | 67 | int (*get_crit_temp) (struct thermal_zone_device *, unsigned long *); |
64 | int (*notify) (struct thermal_zone_device *, int, | 68 | int (*notify) (struct thermal_zone_device *, int, |
65 | enum thermal_trip_type); | 69 | enum thermal_trip_type); |
@@ -98,6 +102,7 @@ struct thermal_zone_device { | |||
98 | struct device device; | 102 | struct device device; |
99 | struct thermal_attr *trip_temp_attrs; | 103 | struct thermal_attr *trip_temp_attrs; |
100 | struct thermal_attr *trip_type_attrs; | 104 | struct thermal_attr *trip_type_attrs; |
105 | struct thermal_attr *trip_hyst_attrs; | ||
101 | void *devdata; | 106 | void *devdata; |
102 | int trips; | 107 | int trips; |
103 | int tc1; | 108 | int tc1; |