Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Shubhrajyoti D | caaa0f3 | 2010-10-28 20:31:44 +0200 | [diff] [blame] | 2 | * lm75.c - Part of lm_sensors, Linux kernel modules for hardware |
| 3 | * monitoring |
| 4 | * Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/module.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/jiffies.h> |
| 25 | #include <linux/i2c.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 26 | #include <linux/hwmon.h> |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 27 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 28 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 29 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include "lm75.h" |
| 31 | |
| 32 | |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 33 | /* |
| 34 | * This driver handles the LM75 and compatible digital temperature sensors. |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 35 | */ |
| 36 | |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 37 | enum lm75_type { /* keep sorted in alphabetical order */ |
Michael Hennerich | e96f9d8 | 2011-10-13 04:43:31 -0400 | [diff] [blame] | 38 | adt75, |
Jean Delvare | 1f86df4 | 2009-12-14 21:17:26 +0100 | [diff] [blame] | 39 | ds1775, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 40 | ds75, |
Jean Delvare | 3fbc81e | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 41 | ds7505, |
Arnaud Ebalard | c98d6c6 | 2013-11-09 18:39:14 +0100 | [diff] [blame] | 42 | g751, |
Jean Delvare | 1f86df4 | 2009-12-14 21:17:26 +0100 | [diff] [blame] | 43 | lm75, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 44 | lm75a, |
| 45 | max6625, |
| 46 | max6626, |
| 47 | mcp980x, |
| 48 | stds75, |
| 49 | tcn75, |
| 50 | tmp100, |
| 51 | tmp101, |
Shubhrajyoti Datta | 6d03405 | 2010-05-27 19:59:03 +0200 | [diff] [blame] | 52 | tmp105, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 53 | tmp175, |
| 54 | tmp275, |
| 55 | tmp75, |
| 56 | }; |
| 57 | |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 58 | /* Addresses scanned */ |
Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 59 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | |
| 63 | /* The LM75 registers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #define LM75_REG_CONF 0x01 |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 65 | static const u8 LM75_REG_TEMP[3] = { |
| 66 | 0x00, /* input */ |
| 67 | 0x03, /* max */ |
| 68 | 0x02, /* hyst */ |
| 69 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
| 71 | /* Each client has this additional data */ |
| 72 | struct lm75_data { |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 73 | struct device *hwmon_dev; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 74 | struct mutex update_lock; |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 75 | u8 orig_conf; |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 76 | u8 resolution; /* In bits, between 9 and 12 */ |
| 77 | u8 resolution_limits; |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 78 | char valid; /* !=0 if registers are valid */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | unsigned long last_updated; /* In jiffies */ |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 80 | unsigned long sample_time; /* In jiffies */ |
| 81 | s16 temp[3]; /* Register values, |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 82 | 0 = input |
| 83 | 1 = max |
| 84 | 2 = hyst */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | static int lm75_read_value(struct i2c_client *client, u8 reg); |
| 88 | static int lm75_write_value(struct i2c_client *client, u8 reg, u16 value); |
| 89 | static struct lm75_data *lm75_update_device(struct device *dev); |
| 90 | |
| 91 | |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 92 | /*-----------------------------------------------------------------------*/ |
| 93 | |
| 94 | /* sysfs attributes for hwmon */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 96 | static ssize_t show_temp(struct device *dev, struct device_attribute *da, |
| 97 | char *buf) |
| 98 | { |
| 99 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 100 | struct lm75_data *data = lm75_update_device(dev); |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 101 | long temp; |
Frans Meulenbroeks | 1f962f3 | 2012-01-03 12:02:40 +0100 | [diff] [blame] | 102 | |
| 103 | if (IS_ERR(data)) |
| 104 | return PTR_ERR(data); |
| 105 | |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 106 | temp = ((data->temp[attr->index] >> (16 - data->resolution)) * 1000) |
| 107 | >> (data->resolution - 8); |
| 108 | |
| 109 | return sprintf(buf, "%ld\n", temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 112 | static ssize_t set_temp(struct device *dev, struct device_attribute *da, |
| 113 | const char *buf, size_t count) |
| 114 | { |
| 115 | struct sensor_device_attribute *attr = to_sensor_dev_attr(da); |
| 116 | struct i2c_client *client = to_i2c_client(dev); |
| 117 | struct lm75_data *data = i2c_get_clientdata(client); |
| 118 | int nr = attr->index; |
Shubhrajyoti D | e3cd952 | 2010-10-28 20:31:44 +0200 | [diff] [blame] | 119 | long temp; |
| 120 | int error; |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 121 | u8 resolution; |
Shubhrajyoti D | e3cd952 | 2010-10-28 20:31:44 +0200 | [diff] [blame] | 122 | |
Frans Meulenbroeks | 24edc0a | 2012-01-03 12:02:41 +0100 | [diff] [blame] | 123 | error = kstrtol(buf, 10, &temp); |
Shubhrajyoti D | e3cd952 | 2010-10-28 20:31:44 +0200 | [diff] [blame] | 124 | if (error) |
| 125 | return error; |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 126 | |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 127 | /* |
| 128 | * Resolution of limit registers is assumed to be the same as the |
| 129 | * temperature input register resolution unless given explicitly. |
| 130 | */ |
| 131 | if (attr->index && data->resolution_limits) |
| 132 | resolution = data->resolution_limits; |
| 133 | else |
| 134 | resolution = data->resolution; |
| 135 | |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 136 | mutex_lock(&data->update_lock); |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 137 | temp = clamp_val(temp, LM75_TEMP_MIN, LM75_TEMP_MAX); |
| 138 | data->temp[nr] = DIV_ROUND_CLOSEST(temp << (resolution - 8), |
| 139 | 1000) << (16 - resolution); |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 140 | lm75_write_value(client, LM75_REG_TEMP[nr], data->temp[nr]); |
| 141 | mutex_unlock(&data->update_lock); |
| 142 | return count; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 145 | static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, |
| 146 | show_temp, set_temp, 1); |
| 147 | static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, |
| 148 | show_temp, set_temp, 2); |
| 149 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 151 | static struct attribute *lm75_attributes[] = { |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 152 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 153 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 154 | &sensor_dev_attr_temp1_max_hyst.dev_attr.attr, |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 155 | |
| 156 | NULL |
| 157 | }; |
| 158 | |
| 159 | static const struct attribute_group lm75_group = { |
| 160 | .attrs = lm75_attributes, |
| 161 | }; |
| 162 | |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 163 | /*-----------------------------------------------------------------------*/ |
| 164 | |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 165 | /* device probe and removal */ |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 166 | |
| 167 | static int |
| 168 | lm75_probe(struct i2c_client *client, const struct i2c_device_id *id) |
| 169 | { |
| 170 | struct lm75_data *data; |
| 171 | int status; |
| 172 | u8 set_mask, clr_mask; |
| 173 | int new; |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 174 | enum lm75_type kind = id->driver_data; |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 175 | |
| 176 | if (!i2c_check_functionality(client->adapter, |
| 177 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA)) |
| 178 | return -EIO; |
| 179 | |
Guenter Roeck | 13ac7a0 | 2012-06-02 09:58:08 -0700 | [diff] [blame] | 180 | data = devm_kzalloc(&client->dev, sizeof(struct lm75_data), GFP_KERNEL); |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 181 | if (!data) |
| 182 | return -ENOMEM; |
| 183 | |
| 184 | i2c_set_clientdata(client, data); |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 185 | mutex_init(&data->update_lock); |
| 186 | |
| 187 | /* Set to LM75 resolution (9 bits, 1/2 degree C) and range. |
| 188 | * Then tweak to be more precise when appropriate. |
| 189 | */ |
| 190 | set_mask = 0; |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 191 | clr_mask = LM75_SHUTDOWN; /* continuous conversions */ |
| 192 | |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 193 | switch (kind) { |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 194 | case adt75: |
| 195 | clr_mask |= 1 << 5; /* not one-shot mode */ |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 196 | data->resolution = 12; |
| 197 | data->sample_time = HZ / 8; |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 198 | break; |
| 199 | case ds1775: |
| 200 | case ds75: |
| 201 | case stds75: |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 202 | clr_mask |= 3 << 5; |
| 203 | set_mask |= 2 << 5; /* 11-bit mode */ |
| 204 | data->resolution = 11; |
| 205 | data->sample_time = HZ; |
| 206 | break; |
Jean Delvare | 3fbc81e | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 207 | case ds7505: |
| 208 | set_mask |= 3 << 5; /* 12-bit mode */ |
| 209 | data->resolution = 12; |
| 210 | data->sample_time = HZ / 4; |
| 211 | break; |
Arnaud Ebalard | c98d6c6 | 2013-11-09 18:39:14 +0100 | [diff] [blame] | 212 | case g751: |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 213 | case lm75: |
| 214 | case lm75a: |
| 215 | data->resolution = 9; |
| 216 | data->sample_time = HZ / 2; |
| 217 | break; |
| 218 | case max6625: |
| 219 | data->resolution = 9; |
| 220 | data->sample_time = HZ / 4; |
| 221 | break; |
| 222 | case max6626: |
| 223 | data->resolution = 12; |
| 224 | data->resolution_limits = 9; |
| 225 | data->sample_time = HZ / 4; |
| 226 | break; |
| 227 | case tcn75: |
| 228 | data->resolution = 9; |
| 229 | data->sample_time = HZ / 8; |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 230 | break; |
| 231 | case mcp980x: |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 232 | data->resolution_limits = 9; |
| 233 | /* fall through */ |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 234 | case tmp100: |
| 235 | case tmp101: |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 236 | set_mask |= 3 << 5; /* 12-bit mode */ |
| 237 | data->resolution = 12; |
| 238 | data->sample_time = HZ; |
| 239 | clr_mask |= 1 << 7; /* not one-shot mode */ |
| 240 | break; |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 241 | case tmp105: |
| 242 | case tmp175: |
| 243 | case tmp275: |
| 244 | case tmp75: |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 245 | set_mask |= 3 << 5; /* 12-bit mode */ |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 246 | clr_mask |= 1 << 7; /* not one-shot mode */ |
Jean Delvare | 0cd2c72 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 247 | data->resolution = 12; |
| 248 | data->sample_time = HZ / 2; |
Jean Delvare | 8a5c5cc | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 249 | break; |
| 250 | } |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 251 | |
| 252 | /* configure as specified */ |
| 253 | status = lm75_read_value(client, LM75_REG_CONF); |
| 254 | if (status < 0) { |
| 255 | dev_dbg(&client->dev, "Can't read config? %d\n", status); |
Guenter Roeck | 13ac7a0 | 2012-06-02 09:58:08 -0700 | [diff] [blame] | 256 | return status; |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 257 | } |
| 258 | data->orig_conf = status; |
| 259 | new = status & ~clr_mask; |
| 260 | new |= set_mask; |
| 261 | if (status != new) |
| 262 | lm75_write_value(client, LM75_REG_CONF, new); |
| 263 | dev_dbg(&client->dev, "Config %02x\n", new); |
| 264 | |
| 265 | /* Register sysfs hooks */ |
| 266 | status = sysfs_create_group(&client->dev.kobj, &lm75_group); |
| 267 | if (status) |
Guenter Roeck | 13ac7a0 | 2012-06-02 09:58:08 -0700 | [diff] [blame] | 268 | return status; |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 269 | |
| 270 | data->hwmon_dev = hwmon_device_register(&client->dev); |
| 271 | if (IS_ERR(data->hwmon_dev)) { |
| 272 | status = PTR_ERR(data->hwmon_dev); |
| 273 | goto exit_remove; |
| 274 | } |
| 275 | |
| 276 | dev_info(&client->dev, "%s: sensor '%s'\n", |
Kay Sievers | 739cf3a | 2009-01-06 10:44:41 -0800 | [diff] [blame] | 277 | dev_name(data->hwmon_dev), client->name); |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 278 | |
| 279 | return 0; |
| 280 | |
| 281 | exit_remove: |
| 282 | sysfs_remove_group(&client->dev.kobj, &lm75_group); |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 283 | return status; |
| 284 | } |
| 285 | |
| 286 | static int lm75_remove(struct i2c_client *client) |
| 287 | { |
| 288 | struct lm75_data *data = i2c_get_clientdata(client); |
| 289 | |
| 290 | hwmon_device_unregister(data->hwmon_dev); |
| 291 | sysfs_remove_group(&client->dev.kobj, &lm75_group); |
| 292 | lm75_write_value(client, LM75_REG_CONF, data->orig_conf); |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
| 296 | static const struct i2c_device_id lm75_ids[] = { |
Michael Hennerich | e96f9d8 | 2011-10-13 04:43:31 -0400 | [diff] [blame] | 297 | { "adt75", adt75, }, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 298 | { "ds1775", ds1775, }, |
| 299 | { "ds75", ds75, }, |
Jean Delvare | 3fbc81e | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 300 | { "ds7505", ds7505, }, |
Arnaud Ebalard | c98d6c6 | 2013-11-09 18:39:14 +0100 | [diff] [blame] | 301 | { "g751", g751, }, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 302 | { "lm75", lm75, }, |
| 303 | { "lm75a", lm75a, }, |
| 304 | { "max6625", max6625, }, |
| 305 | { "max6626", max6626, }, |
| 306 | { "mcp980x", mcp980x, }, |
| 307 | { "stds75", stds75, }, |
| 308 | { "tcn75", tcn75, }, |
| 309 | { "tmp100", tmp100, }, |
| 310 | { "tmp101", tmp101, }, |
Shubhrajyoti Datta | 6d03405 | 2010-05-27 19:59:03 +0200 | [diff] [blame] | 311 | { "tmp105", tmp105, }, |
David Brownell | 9ebd3d8 | 2008-05-03 19:33:15 -0700 | [diff] [blame] | 312 | { "tmp175", tmp175, }, |
| 313 | { "tmp275", tmp275, }, |
| 314 | { "tmp75", tmp75, }, |
| 315 | { /* LIST END */ } |
| 316 | }; |
| 317 | MODULE_DEVICE_TABLE(i2c, lm75_ids); |
| 318 | |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 319 | #define LM75A_ID 0xA1 |
| 320 | |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 321 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 322 | static int lm75_detect(struct i2c_client *new_client, |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 323 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 324 | { |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 325 | struct i2c_adapter *adapter = new_client->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | int i; |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 327 | int conf, hyst, os; |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 328 | bool is_lm75a = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA | |
| 331 | I2C_FUNC_SMBUS_WORD_DATA)) |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 332 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Jean Delvare | 426343e | 2011-10-13 17:15:11 -0400 | [diff] [blame] | 334 | /* |
| 335 | * Now, we do the remaining detection. There is no identification- |
| 336 | * dedicated register so we have to rely on several tricks: |
| 337 | * unused bits, registers cycling over 8-address boundaries, |
| 338 | * addresses 0x04-0x07 returning the last read value. |
| 339 | * The cycling+unused addresses combination is not tested, |
| 340 | * since it would significantly slow the detection down and would |
| 341 | * hardly add any value. |
| 342 | * |
| 343 | * The National Semiconductor LM75A is different than earlier |
| 344 | * LM75s. It has an ID byte of 0xaX (where X is the chip |
| 345 | * revision, with 1 being the only revision in existence) in |
| 346 | * register 7, and unused registers return 0xff rather than the |
| 347 | * last read value. |
| 348 | * |
| 349 | * Note that this function only detects the original National |
| 350 | * Semiconductor LM75 and the LM75A. Clones from other vendors |
| 351 | * aren't detected, on purpose, because they are typically never |
| 352 | * found on PC hardware. They are found on embedded designs where |
| 353 | * they can be instantiated explicitly so detection is not needed. |
| 354 | * The absence of identification registers on all these clones |
| 355 | * would make their exhaustive detection very difficult and weak, |
| 356 | * and odds are that the driver would bind to unsupported devices. |
| 357 | */ |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 358 | |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 359 | /* Unused bits */ |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 360 | conf = i2c_smbus_read_byte_data(new_client, 1); |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 361 | if (conf & 0xe0) |
| 362 | return -ENODEV; |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 363 | |
| 364 | /* First check for LM75A */ |
| 365 | if (i2c_smbus_read_byte_data(new_client, 7) == LM75A_ID) { |
| 366 | /* LM75A returns 0xff on unused registers so |
| 367 | just to be sure we check for that too. */ |
| 368 | if (i2c_smbus_read_byte_data(new_client, 4) != 0xff |
| 369 | || i2c_smbus_read_byte_data(new_client, 5) != 0xff |
| 370 | || i2c_smbus_read_byte_data(new_client, 6) != 0xff) |
| 371 | return -ENODEV; |
| 372 | is_lm75a = 1; |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 373 | hyst = i2c_smbus_read_byte_data(new_client, 2); |
| 374 | os = i2c_smbus_read_byte_data(new_client, 3); |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 375 | } else { /* Traditional style LM75 detection */ |
| 376 | /* Unused addresses */ |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 377 | hyst = i2c_smbus_read_byte_data(new_client, 2); |
| 378 | if (i2c_smbus_read_byte_data(new_client, 4) != hyst |
| 379 | || i2c_smbus_read_byte_data(new_client, 5) != hyst |
| 380 | || i2c_smbus_read_byte_data(new_client, 6) != hyst |
| 381 | || i2c_smbus_read_byte_data(new_client, 7) != hyst) |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 382 | return -ENODEV; |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 383 | os = i2c_smbus_read_byte_data(new_client, 3); |
| 384 | if (i2c_smbus_read_byte_data(new_client, 4) != os |
| 385 | || i2c_smbus_read_byte_data(new_client, 5) != os |
| 386 | || i2c_smbus_read_byte_data(new_client, 6) != os |
| 387 | || i2c_smbus_read_byte_data(new_client, 7) != os) |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 388 | return -ENODEV; |
| 389 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 391 | /* Addresses cycling */ |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 392 | for (i = 8; i <= 248; i += 40) { |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 393 | if (i2c_smbus_read_byte_data(new_client, i + 1) != conf |
Jean Delvare | e76f67b | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 394 | || i2c_smbus_read_byte_data(new_client, i + 2) != hyst |
| 395 | || i2c_smbus_read_byte_data(new_client, i + 3) != os) |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 396 | return -ENODEV; |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 397 | if (is_lm75a && i2c_smbus_read_byte_data(new_client, i + 7) |
| 398 | != LM75A_ID) |
| 399 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
| 401 | |
Len Sorensen | 05e82fe | 2011-03-21 17:59:36 +0100 | [diff] [blame] | 402 | strlcpy(info->type, is_lm75a ? "lm75a" : "lm75", I2C_NAME_SIZE); |
Mark M. Hoffman | c1685f6 | 2006-09-24 20:59:49 +0200 | [diff] [blame] | 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | } |
| 406 | |
Shubhrajyoti Datta | 9914518 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 407 | #ifdef CONFIG_PM |
| 408 | static int lm75_suspend(struct device *dev) |
| 409 | { |
| 410 | int status; |
| 411 | struct i2c_client *client = to_i2c_client(dev); |
| 412 | status = lm75_read_value(client, LM75_REG_CONF); |
| 413 | if (status < 0) { |
| 414 | dev_dbg(&client->dev, "Can't read config? %d\n", status); |
| 415 | return status; |
| 416 | } |
| 417 | status = status | LM75_SHUTDOWN; |
| 418 | lm75_write_value(client, LM75_REG_CONF, status); |
| 419 | return 0; |
| 420 | } |
| 421 | |
| 422 | static int lm75_resume(struct device *dev) |
| 423 | { |
| 424 | int status; |
| 425 | struct i2c_client *client = to_i2c_client(dev); |
| 426 | status = lm75_read_value(client, LM75_REG_CONF); |
| 427 | if (status < 0) { |
| 428 | dev_dbg(&client->dev, "Can't read config? %d\n", status); |
| 429 | return status; |
| 430 | } |
| 431 | status = status & ~LM75_SHUTDOWN; |
| 432 | lm75_write_value(client, LM75_REG_CONF, status); |
| 433 | return 0; |
| 434 | } |
| 435 | |
| 436 | static const struct dev_pm_ops lm75_dev_pm_ops = { |
| 437 | .suspend = lm75_suspend, |
| 438 | .resume = lm75_resume, |
| 439 | }; |
| 440 | #define LM75_DEV_PM_OPS (&lm75_dev_pm_ops) |
| 441 | #else |
| 442 | #define LM75_DEV_PM_OPS NULL |
| 443 | #endif /* CONFIG_PM */ |
| 444 | |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 445 | static struct i2c_driver lm75_driver = { |
| 446 | .class = I2C_CLASS_HWMON, |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 447 | .driver = { |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 448 | .name = "lm75", |
Shubhrajyoti Datta | 9914518 | 2010-08-14 21:08:50 +0200 | [diff] [blame] | 449 | .pm = LM75_DEV_PM_OPS, |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 450 | }, |
Jean Delvare | 8ff69ee | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 451 | .probe = lm75_probe, |
| 452 | .remove = lm75_remove, |
| 453 | .id_table = lm75_ids, |
| 454 | .detect = lm75_detect, |
Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 455 | .address_list = normal_i2c, |
David Brownell | 01a5239 | 2008-04-21 12:10:53 -0700 | [diff] [blame] | 456 | }; |
| 457 | |
| 458 | /*-----------------------------------------------------------------------*/ |
| 459 | |
| 460 | /* register access */ |
| 461 | |
Shubhrajyoti D | caaa0f3 | 2010-10-28 20:31:44 +0200 | [diff] [blame] | 462 | /* |
| 463 | * All registers are word-sized, except for the configuration register. |
| 464 | * LM75 uses a high-byte first convention, which is exactly opposite to |
| 465 | * the SMBus standard. |
| 466 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | static int lm75_read_value(struct i2c_client *client, u8 reg) |
| 468 | { |
| 469 | if (reg == LM75_REG_CONF) |
| 470 | return i2c_smbus_read_byte_data(client, reg); |
Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 471 | else |
| 472 | return i2c_smbus_read_word_swapped(client, reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | } |
| 474 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 475 | static int lm75_write_value(struct i2c_client *client, u8 reg, u16 value) |
| 476 | { |
| 477 | if (reg == LM75_REG_CONF) |
| 478 | return i2c_smbus_write_byte_data(client, reg, value); |
| 479 | else |
Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 480 | return i2c_smbus_write_word_swapped(client, reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 483 | static struct lm75_data *lm75_update_device(struct device *dev) |
| 484 | { |
| 485 | struct i2c_client *client = to_i2c_client(dev); |
| 486 | struct lm75_data *data = i2c_get_clientdata(client); |
Frans Meulenbroeks | 1f962f3 | 2012-01-03 12:02:40 +0100 | [diff] [blame] | 487 | struct lm75_data *ret = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 489 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | |
Jean Delvare | 87d0621 | 2013-05-04 14:49:36 +0200 | [diff] [blame] | 491 | if (time_after(jiffies, data->last_updated + data->sample_time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | || !data->valid) { |
Jean Delvare | 9ca8e40c8 | 2007-05-08 17:22:01 +0200 | [diff] [blame] | 493 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | dev_dbg(&client->dev, "Starting lm75 update\n"); |
| 495 | |
David Brownell | bcccc3a | 2008-05-03 19:19:16 -0700 | [diff] [blame] | 496 | for (i = 0; i < ARRAY_SIZE(data->temp); i++) { |
| 497 | int status; |
| 498 | |
| 499 | status = lm75_read_value(client, LM75_REG_TEMP[i]); |
Frans Meulenbroeks | 1f962f3 | 2012-01-03 12:02:40 +0100 | [diff] [blame] | 500 | if (unlikely(status < 0)) { |
| 501 | dev_dbg(dev, |
| 502 | "LM75: Failed to read value: reg %d, error %d\n", |
| 503 | LM75_REG_TEMP[i], status); |
| 504 | ret = ERR_PTR(status); |
| 505 | data->valid = 0; |
| 506 | goto abort; |
| 507 | } |
| 508 | data->temp[i] = status; |
David Brownell | bcccc3a | 2008-05-03 19:19:16 -0700 | [diff] [blame] | 509 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | data->last_updated = jiffies; |
| 511 | data->valid = 1; |
| 512 | } |
| 513 | |
Frans Meulenbroeks | 1f962f3 | 2012-01-03 12:02:40 +0100 | [diff] [blame] | 514 | abort: |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 515 | mutex_unlock(&data->update_lock); |
Frans Meulenbroeks | 1f962f3 | 2012-01-03 12:02:40 +0100 | [diff] [blame] | 516 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 519 | module_i2c_driver(lm75_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | |
| 521 | MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>"); |
| 522 | MODULE_DESCRIPTION("LM75 driver"); |
| 523 | MODULE_LICENSE("GPL"); |