diff --git a/Documentation/devicetree/bindings/hwmon/lm90.txt b/Documentation/devicetree/bindings/hwmon/lm90.txt
index 045e94b..da9aae7 100644
--- a/Documentation/devicetree/bindings/hwmon/lm90.txt
+++ b/Documentation/devicetree/bindings/hwmon/lm90.txt
@@ -28,6 +28,13 @@ Required node properties:
- vcc-supply: vcc regulator for the supply voltage.
+- #thermal-sensor-cells: Should be 1. See ../../thermal/thermal.txt for a
+ description of this property. Use the following
+ values to refer to a specific sensor:
+ 0: chip internal sensor
+ 1: external sensor
+ 2: second external sensor, if present
+
Optional properties:
- interrupts: Contains a single interrupt specifier which describes the
LM90 "-ALERT" pin output.@@ -81,4 +88,5 @@ temp-sensor {
remote-high = <80000>;
remote-critical = <90000>;
remote-offset = <(-62125)>;
+ #thermal-sensor-cells = <1>;
}diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c
index 8ae8791..4577916 100644
--- a/drivers/hwmon/lm90.c
+++ b/drivers/hwmon/lm90.c
@@ -95,6 +95,7 @@
#include <linux/mutex.h>
#include <linux/of.h>
#include <linux/sysfs.h>
+#include <linux/thermal.h>
#include <linux/interrupt.h>
#include <linux/regulator/consumer.h>
@@ -207,6 +208,8 @@ enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
#define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
#define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
+#define LM90_NUM_SENSORS(d) (((d)->flags & LM90_HAVE_TEMP3) ? 3 : 2)
+
/*
* Driver data (common to all clients)
*/@@ -365,6 +368,13 @@ enum lm90_temp11_reg_index {
* Client data (each client gets its own)
*/
+struct lm90_sensor {
+ struct lm90_data *data;
+ int index;
+
+ struct thermal_zone_device *tz;
+};
+
struct lm90_data {
struct i2c_client *client;
struct device *hwmon_dev;@@ -390,6 +400,10 @@ struct lm90_data {
s16 temp11[TEMP11_REG_NUM];
u8 temp_hyst;
u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
+
+#ifdef CONFIG_THERMAL_OF
+ struct lm90_sensor sensors[3];
+#endif
};
/*@@ -1275,6 +1289,23 @@ static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO,
lm90_sysfs_show_pec, lm90_sysfs_set_pec);
/*
+ * Thermal zone code
+ */
+
+#ifdef CONFIG_THERMAL_OF
+static int lm90_of_get_temp(void *data, int *out_temp)
+{
+ struct lm90_sensor *sensor = data;
+ *out_temp = lm90_get_temp11(sensor->data, sensor->index);
+ return 0;
+}
+
+static const struct thermal_zone_of_device_ops lm90_of_thermal_ops = {
+ .get_temp = lm90_of_get_temp,
+};
+#endif
+
+/*
* Real code
*/
@@ -1653,6 +1684,7 @@ static int lm90_probe(struct i2c_client *client,
struct regulator *regulator;
int groups = 0;
int err;
+ unsigned int i;
regulator = devm_regulator_get(dev, "vcc");
if (IS_ERR(regulator))
@@ -1737,6 +1769,20 @@ static int lm90_probe(struct i2c_client *client,
}
}
+#ifdef CONFIG_THERMAL_OF
+ data->sensors[0].index = LOCAL_TEMP;
+ data->sensors[1].index = REMOTE_TEMP;
+ data->sensors[2].index = REMOTE2_TEMP;
+ for (i = 0; i < LM90_NUM_SENSORS(data); i++) {
+ data->sensors[i].data = data;
+ data->sensors[i].tz = thermal_zone_of_sensor_register(
+ dev, i, &data->sensors[i],
+ &lm90_of_thermal_ops);
+ if (IS_ERR(data->sensors[i].tz))
+ data->sensors[i].tz = NULL;
+ }
+#endif
+
return 0;
exit_unregister:@@ -1753,6 +1799,14 @@ exit_restore:
static int lm90_remove(struct i2c_client *client)
{
struct lm90_data *data = i2c_get_clientdata(client);
+#ifdef CONFIG_THERMAL_OF
+ unsigned int i;
+
+ for (i = 0; i < LM90_NUM_SENSORS(data); i++) {
+ thermal_zone_of_sensor_unregister(&client->dev,
+ data->sensors[i].tz);
+ }
+#endif
hwmon_device_unregister(data->hwmon_dev);
device_remove_file(&client->dev, &dev_attr_pec);--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html