2010-05-28 01:58:57 +08:00
|
|
|
/* Texas Instruments TMP102 SMBus temperature sensor driver
|
2010-05-28 01:58:56 +08:00
|
|
|
*
|
2010-05-28 01:58:57 +08:00
|
|
|
* Copyright (C) 2010 Steven King <sfking@fdwdc.com>
|
2010-05-28 01:58:56 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2016-06-20 11:34:57 +08:00
|
|
|
#include <linux/delay.h>
|
2010-05-28 01:58:56 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/hwmon.h>
|
|
|
|
#include <linux/hwmon-sysfs.h>
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/mutex.h>
|
2010-05-28 01:58:57 +08:00
|
|
|
#include <linux/device.h>
|
2012-10-10 21:25:56 +08:00
|
|
|
#include <linux/jiffies.h>
|
2016-06-21 00:55:46 +08:00
|
|
|
#include <linux/regmap.h>
|
2013-07-17 02:57:51 +08:00
|
|
|
#include <linux/thermal.h>
|
|
|
|
#include <linux/of.h>
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
#define DRIVER_NAME "tmp102"
|
|
|
|
|
|
|
|
#define TMP102_TEMP_REG 0x00
|
|
|
|
#define TMP102_CONF_REG 0x01
|
|
|
|
/* note: these bit definitions are byte swapped */
|
|
|
|
#define TMP102_CONF_SD 0x0100
|
|
|
|
#define TMP102_CONF_TM 0x0200
|
|
|
|
#define TMP102_CONF_POL 0x0400
|
|
|
|
#define TMP102_CONF_F0 0x0800
|
|
|
|
#define TMP102_CONF_F1 0x1000
|
|
|
|
#define TMP102_CONF_R0 0x2000
|
|
|
|
#define TMP102_CONF_R1 0x4000
|
|
|
|
#define TMP102_CONF_OS 0x8000
|
|
|
|
#define TMP102_CONF_EM 0x0010
|
|
|
|
#define TMP102_CONF_AL 0x0020
|
|
|
|
#define TMP102_CONF_CR0 0x0040
|
|
|
|
#define TMP102_CONF_CR1 0x0080
|
|
|
|
#define TMP102_TLOW_REG 0x02
|
|
|
|
#define TMP102_THIGH_REG 0x03
|
|
|
|
|
2016-06-23 01:01:57 +08:00
|
|
|
#define TMP102_CONFREG_MASK (TMP102_CONF_SD | TMP102_CONF_TM | \
|
|
|
|
TMP102_CONF_POL | TMP102_CONF_F0 | \
|
|
|
|
TMP102_CONF_F1 | TMP102_CONF_OS | \
|
|
|
|
TMP102_CONF_EM | TMP102_CONF_AL | \
|
|
|
|
TMP102_CONF_CR0 | TMP102_CONF_CR1)
|
|
|
|
|
|
|
|
#define TMP102_CONFIG_CLEAR (TMP102_CONF_SD | TMP102_CONF_OS | \
|
|
|
|
TMP102_CONF_CR0)
|
|
|
|
#define TMP102_CONFIG_SET (TMP102_CONF_TM | TMP102_CONF_EM | \
|
|
|
|
TMP102_CONF_CR1)
|
|
|
|
|
2016-06-20 11:34:57 +08:00
|
|
|
#define CONVERSION_TIME_MS 35 /* in milli-seconds */
|
|
|
|
|
2010-05-28 01:58:56 +08:00
|
|
|
struct tmp102 {
|
2016-06-21 00:55:46 +08:00
|
|
|
struct regmap *regmap;
|
2010-05-28 01:58:59 +08:00
|
|
|
u16 config_orig;
|
2016-06-20 11:34:57 +08:00
|
|
|
unsigned long ready_time;
|
2010-05-28 01:58:56 +08:00
|
|
|
};
|
|
|
|
|
2010-05-28 01:58:57 +08:00
|
|
|
/* convert left adjusted 13-bit TMP102 register value to milliCelsius */
|
|
|
|
static inline int tmp102_reg_to_mC(s16 val)
|
2010-05-28 01:58:56 +08:00
|
|
|
{
|
2010-05-28 01:58:57 +08:00
|
|
|
return ((val & ~0x01) * 1000) / 128;
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
|
|
|
|
2010-05-28 01:58:57 +08:00
|
|
|
/* convert milliCelsius to left adjusted 13-bit TMP102 register value */
|
|
|
|
static inline u16 tmp102_mC_to_reg(int val)
|
2010-05-28 01:58:56 +08:00
|
|
|
{
|
|
|
|
return (val * 128) / 1000;
|
|
|
|
}
|
|
|
|
|
2015-07-24 14:12:54 +08:00
|
|
|
static int tmp102_read_temp(void *dev, int *temp)
|
2013-07-17 02:57:51 +08:00
|
|
|
{
|
2016-06-20 11:34:57 +08:00
|
|
|
struct tmp102 *tmp102 = dev_get_drvdata(dev);
|
2016-06-21 00:55:46 +08:00
|
|
|
unsigned int reg;
|
|
|
|
int ret;
|
2013-07-17 02:57:51 +08:00
|
|
|
|
2016-06-20 11:34:57 +08:00
|
|
|
if (time_before(jiffies, tmp102->ready_time)) {
|
2015-12-02 00:10:21 +08:00
|
|
|
dev_dbg(dev, "%s: Conversion not ready yet..\n", __func__);
|
|
|
|
return -EAGAIN;
|
|
|
|
}
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
ret = regmap_read(tmp102->regmap, TMP102_TEMP_REG, ®);
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
2016-06-20 11:34:57 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
*temp = tmp102_reg_to_mC(reg);
|
2013-07-17 02:57:51 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-05-28 01:58:56 +08:00
|
|
|
static ssize_t tmp102_show_temp(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
char *buf)
|
|
|
|
{
|
|
|
|
struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
|
2016-06-20 11:34:57 +08:00
|
|
|
struct tmp102 *tmp102 = dev_get_drvdata(dev);
|
2016-06-21 00:55:46 +08:00
|
|
|
int regaddr = sda->index;
|
|
|
|
unsigned int reg;
|
|
|
|
int err;
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
if (regaddr == TMP102_TEMP_REG &&
|
|
|
|
time_before(jiffies, tmp102->ready_time))
|
2015-12-02 00:10:21 +08:00
|
|
|
return -EAGAIN;
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
err = regmap_read(tmp102->regmap, regaddr, ®);
|
|
|
|
if (err < 0)
|
|
|
|
return err;
|
2016-06-20 11:34:57 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
return sprintf(buf, "%d\n", tmp102_reg_to_mC(reg));
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static ssize_t tmp102_set_temp(struct device *dev,
|
|
|
|
struct device_attribute *attr,
|
|
|
|
const char *buf, size_t count)
|
|
|
|
{
|
|
|
|
struct sensor_device_attribute *sda = to_sensor_dev_attr(attr);
|
2014-02-03 02:08:09 +08:00
|
|
|
struct tmp102 *tmp102 = dev_get_drvdata(dev);
|
2016-06-21 00:55:46 +08:00
|
|
|
int reg = sda->index;
|
2010-05-28 01:58:56 +08:00
|
|
|
long val;
|
2016-06-21 00:55:46 +08:00
|
|
|
int err;
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2012-01-05 03:58:52 +08:00
|
|
|
if (kstrtol(buf, 10, &val) < 0)
|
2010-05-28 01:58:56 +08:00
|
|
|
return -EINVAL;
|
2013-01-10 00:09:34 +08:00
|
|
|
val = clamp_val(val, -256000, 255000);
|
2010-05-28 01:58:57 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
err = regmap_write(tmp102->regmap, reg, tmp102_mC_to_reg(val));
|
|
|
|
return err ? : count;
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, tmp102_show_temp, NULL,
|
|
|
|
TMP102_TEMP_REG);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, tmp102_show_temp,
|
2016-06-21 00:55:46 +08:00
|
|
|
tmp102_set_temp, TMP102_TLOW_REG);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, tmp102_show_temp,
|
2016-06-21 00:55:46 +08:00
|
|
|
tmp102_set_temp, TMP102_THIGH_REG);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2014-02-03 02:08:09 +08:00
|
|
|
static struct attribute *tmp102_attrs[] = {
|
2010-05-28 01:58:56 +08:00
|
|
|
&sensor_dev_attr_temp1_input.dev_attr.attr,
|
|
|
|
&sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
|
|
|
|
&sensor_dev_attr_temp1_max.dev_attr.attr,
|
|
|
|
NULL
|
|
|
|
};
|
2014-02-03 02:08:09 +08:00
|
|
|
ATTRIBUTE_GROUPS(tmp102);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2014-11-08 09:24:39 +08:00
|
|
|
static const struct thermal_zone_of_device_ops tmp102_of_thermal_ops = {
|
|
|
|
.get_temp = tmp102_read_temp,
|
|
|
|
};
|
|
|
|
|
2016-06-20 11:09:54 +08:00
|
|
|
static void tmp102_restore_config(void *data)
|
|
|
|
{
|
|
|
|
struct tmp102 *tmp102 = data;
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
regmap_write(tmp102->regmap, TMP102_CONF_REG, tmp102->config_orig);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool tmp102_is_writeable_reg(struct device *dev, unsigned int reg)
|
|
|
|
{
|
|
|
|
return reg != TMP102_TEMP_REG;
|
2016-06-20 11:09:54 +08:00
|
|
|
}
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
static bool tmp102_is_volatile_reg(struct device *dev, unsigned int reg)
|
|
|
|
{
|
|
|
|
return reg == TMP102_TEMP_REG;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct regmap_config tmp102_regmap_config = {
|
|
|
|
.reg_bits = 8,
|
|
|
|
.val_bits = 16,
|
|
|
|
.max_register = TMP102_THIGH_REG,
|
|
|
|
.writeable_reg = tmp102_is_writeable_reg,
|
|
|
|
.volatile_reg = tmp102_is_volatile_reg,
|
|
|
|
.val_format_endian = REGMAP_ENDIAN_BIG,
|
|
|
|
.cache_type = REGCACHE_RBTREE,
|
|
|
|
.use_single_rw = true,
|
|
|
|
};
|
|
|
|
|
2012-11-20 02:22:35 +08:00
|
|
|
static int tmp102_probe(struct i2c_client *client,
|
2010-05-28 01:58:56 +08:00
|
|
|
const struct i2c_device_id *id)
|
|
|
|
{
|
2014-02-03 06:22:30 +08:00
|
|
|
struct device *dev = &client->dev;
|
2014-02-03 02:08:09 +08:00
|
|
|
struct device *hwmon_dev;
|
2010-05-28 01:58:56 +08:00
|
|
|
struct tmp102 *tmp102;
|
2016-06-21 00:55:46 +08:00
|
|
|
unsigned int regval;
|
|
|
|
int err;
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2010-05-28 01:58:57 +08:00
|
|
|
if (!i2c_check_functionality(client->adapter,
|
2010-05-28 01:58:56 +08:00
|
|
|
I2C_FUNC_SMBUS_WORD_DATA)) {
|
2014-02-03 06:22:30 +08:00
|
|
|
dev_err(dev,
|
2013-01-11 02:01:24 +08:00
|
|
|
"adapter doesn't support SMBus word transactions\n");
|
2010-05-28 01:58:56 +08:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2014-02-03 06:22:30 +08:00
|
|
|
tmp102 = devm_kzalloc(dev, sizeof(*tmp102), GFP_KERNEL);
|
2012-06-03 02:35:52 +08:00
|
|
|
if (!tmp102)
|
2010-05-28 01:58:56 +08:00
|
|
|
return -ENOMEM;
|
2012-06-03 02:35:52 +08:00
|
|
|
|
2010-05-28 01:58:56 +08:00
|
|
|
i2c_set_clientdata(client, tmp102);
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
tmp102->regmap = devm_regmap_init_i2c(client, &tmp102_regmap_config);
|
|
|
|
if (IS_ERR(tmp102->regmap))
|
|
|
|
return PTR_ERR(tmp102->regmap);
|
|
|
|
|
|
|
|
err = regmap_read(tmp102->regmap, TMP102_CONF_REG, ®val);
|
|
|
|
if (err < 0) {
|
2014-02-03 06:22:30 +08:00
|
|
|
dev_err(dev, "error reading config register\n");
|
2016-06-21 00:55:46 +08:00
|
|
|
return err;
|
2010-05-28 01:58:59 +08:00
|
|
|
}
|
2016-06-23 01:01:57 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
if ((regval & ~TMP102_CONFREG_MASK) !=
|
2016-06-23 01:01:57 +08:00
|
|
|
(TMP102_CONF_R0 | TMP102_CONF_R1)) {
|
|
|
|
dev_err(dev, "unexpected config register value\n");
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
tmp102->config_orig = regval;
|
2016-06-20 11:09:54 +08:00
|
|
|
|
2016-07-26 05:57:47 +08:00
|
|
|
err = devm_add_action_or_reset(dev, tmp102_restore_config, tmp102);
|
|
|
|
if (err)
|
|
|
|
return err;
|
2016-06-20 11:09:54 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
regval &= ~TMP102_CONFIG_CLEAR;
|
|
|
|
regval |= TMP102_CONFIG_SET;
|
2016-06-23 01:01:57 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
err = regmap_write(tmp102->regmap, TMP102_CONF_REG, regval);
|
|
|
|
if (err < 0) {
|
2014-02-03 06:22:30 +08:00
|
|
|
dev_err(dev, "error writing config register\n");
|
2016-06-21 00:55:46 +08:00
|
|
|
return err;
|
2010-05-28 01:58:57 +08:00
|
|
|
}
|
2016-06-20 11:34:57 +08:00
|
|
|
|
|
|
|
tmp102->ready_time = jiffies;
|
|
|
|
if (tmp102->config_orig & TMP102_CONF_SD) {
|
|
|
|
/*
|
|
|
|
* Mark that we are not ready with data until the first
|
|
|
|
* conversion is complete
|
|
|
|
*/
|
|
|
|
tmp102->ready_time += msecs_to_jiffies(CONVERSION_TIME_MS);
|
|
|
|
}
|
|
|
|
|
2016-06-20 11:09:54 +08:00
|
|
|
hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
|
|
|
|
tmp102,
|
|
|
|
tmp102_groups);
|
2014-02-03 02:08:09 +08:00
|
|
|
if (IS_ERR(hwmon_dev)) {
|
2014-02-03 06:22:30 +08:00
|
|
|
dev_dbg(dev, "unable to register hwmon device\n");
|
2016-06-20 11:09:54 +08:00
|
|
|
return PTR_ERR(hwmon_dev);
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
2016-03-10 05:02:54 +08:00
|
|
|
devm_thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev,
|
|
|
|
&tmp102_of_thermal_ops);
|
2013-07-17 02:57:51 +08:00
|
|
|
|
2014-02-03 06:22:30 +08:00
|
|
|
dev_info(dev, "initialized\n");
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-02-03 23:01:58 +08:00
|
|
|
#ifdef CONFIG_PM_SLEEP
|
2010-05-28 01:58:56 +08:00
|
|
|
static int tmp102_suspend(struct device *dev)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = to_i2c_client(dev);
|
2016-06-21 00:55:46 +08:00
|
|
|
struct tmp102 *tmp102 = i2c_get_clientdata(client);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
return regmap_update_bits(tmp102->regmap, TMP102_CONF_REG,
|
|
|
|
TMP102_CONF_SD, TMP102_CONF_SD);
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int tmp102_resume(struct device *dev)
|
|
|
|
{
|
|
|
|
struct i2c_client *client = to_i2c_client(dev);
|
2016-06-20 11:34:57 +08:00
|
|
|
struct tmp102 *tmp102 = i2c_get_clientdata(client);
|
2016-06-21 00:55:46 +08:00
|
|
|
int err;
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
err = regmap_update_bits(tmp102->regmap, TMP102_CONF_REG,
|
|
|
|
TMP102_CONF_SD, 0);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
2016-06-20 11:34:57 +08:00
|
|
|
tmp102->ready_time = jiffies + msecs_to_jiffies(CONVERSION_TIME_MS);
|
|
|
|
|
2016-06-21 00:55:46 +08:00
|
|
|
return err;
|
2010-05-28 01:58:56 +08:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_PM */
|
|
|
|
|
2015-02-03 23:01:58 +08:00
|
|
|
static SIMPLE_DEV_PM_OPS(tmp102_dev_pm_ops, tmp102_suspend, tmp102_resume);
|
|
|
|
|
2010-05-28 01:58:56 +08:00
|
|
|
static const struct i2c_device_id tmp102_id[] = {
|
2010-05-28 01:58:57 +08:00
|
|
|
{ "tmp102", 0 },
|
2010-05-28 01:58:56 +08:00
|
|
|
{ }
|
|
|
|
};
|
2010-05-28 01:58:57 +08:00
|
|
|
MODULE_DEVICE_TABLE(i2c, tmp102_id);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
static struct i2c_driver tmp102_driver = {
|
|
|
|
.driver.name = DRIVER_NAME,
|
2015-02-03 23:01:58 +08:00
|
|
|
.driver.pm = &tmp102_dev_pm_ops,
|
2010-05-28 01:58:56 +08:00
|
|
|
.probe = tmp102_probe,
|
|
|
|
.id_table = tmp102_id,
|
|
|
|
};
|
|
|
|
|
2012-01-20 15:38:18 +08:00
|
|
|
module_i2c_driver(tmp102_driver);
|
2010-05-28 01:58:56 +08:00
|
|
|
|
|
|
|
MODULE_AUTHOR("Steven King <sfking@fdwdc.com>");
|
|
|
|
MODULE_DESCRIPTION("Texas Instruments TMP102 temperature sensor driver");
|
|
|
|
MODULE_LICENSE("GPL");
|