Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 1 | /* tmp401.c |
| 2 | * |
| 3 | * Copyright (C) 2007,2008 Hans de Goede <hdegoede@redhat.com> |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 4 | * Preliminary tmp411 support by: |
| 5 | * Gabriel Konat, Sander Leget, Wouter Willems |
| 6 | * Copyright (C) 2009 Andre Prendel <andre.prendel@gmx.de> |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 7 | * |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 8 | * Cleanup and support for TMP431 and TMP432 by Guenter Roeck |
| 9 | * Copyright (c) 2013 Guenter Roeck <linux@roeck-us.net> |
| 10 | * |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 24 | */ |
| 25 | |
| 26 | /* |
| 27 | * Driver for the Texas Instruments TMP401 SMBUS temperature sensor IC. |
| 28 | * |
| 29 | * Note this IC is in some aspect similar to the LM90, but it has quite a |
| 30 | * few differences too, for example the local temp has a higher resolution |
| 31 | * and thus has 16 bits registers for its value and limit instead of 8 bits. |
| 32 | */ |
| 33 | |
| 34 | #include <linux/module.h> |
| 35 | #include <linux/init.h> |
Guenter Roeck | 947e927 | 2013-03-27 08:48:03 -0700 | [diff] [blame] | 36 | #include <linux/bitops.h> |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 37 | #include <linux/slab.h> |
| 38 | #include <linux/jiffies.h> |
| 39 | #include <linux/i2c.h> |
| 40 | #include <linux/hwmon.h> |
| 41 | #include <linux/hwmon-sysfs.h> |
| 42 | #include <linux/err.h> |
| 43 | #include <linux/mutex.h> |
| 44 | #include <linux/sysfs.h> |
| 45 | |
| 46 | /* Addresses to scan */ |
Guenter Roeck | a1fac92 | 2013-03-15 12:55:08 -0700 | [diff] [blame] | 47 | static const unsigned short normal_i2c[] = { 0x4c, 0x4d, 0x4e, I2C_CLIENT_END }; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 48 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 49 | enum chips { tmp401, tmp411, tmp431, tmp432 }; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 50 | |
| 51 | /* |
| 52 | * The TMP401 registers, note some registers have different addresses for |
| 53 | * reading and writing |
| 54 | */ |
| 55 | #define TMP401_STATUS 0x02 |
| 56 | #define TMP401_CONFIG_READ 0x03 |
| 57 | #define TMP401_CONFIG_WRITE 0x09 |
| 58 | #define TMP401_CONVERSION_RATE_READ 0x04 |
| 59 | #define TMP401_CONVERSION_RATE_WRITE 0x0A |
| 60 | #define TMP401_TEMP_CRIT_HYST 0x21 |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 61 | #define TMP401_MANUFACTURER_ID_REG 0xFE |
| 62 | #define TMP401_DEVICE_ID_REG 0xFF |
| 63 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 64 | static const u8 TMP401_TEMP_MSB_READ[6][2] = { |
| 65 | { 0x00, 0x01 }, /* temp */ |
| 66 | { 0x06, 0x08 }, /* low limit */ |
| 67 | { 0x05, 0x07 }, /* high limit */ |
| 68 | { 0x20, 0x19 }, /* therm (crit) limit */ |
| 69 | { 0x30, 0x34 }, /* lowest */ |
| 70 | { 0x32, 0x36 }, /* highest */ |
| 71 | }; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 72 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 73 | static const u8 TMP401_TEMP_MSB_WRITE[6][2] = { |
| 74 | { 0, 0 }, /* temp (unused) */ |
| 75 | { 0x0C, 0x0E }, /* low limit */ |
| 76 | { 0x0B, 0x0D }, /* high limit */ |
| 77 | { 0x20, 0x19 }, /* therm (crit) limit */ |
| 78 | { 0x30, 0x34 }, /* lowest */ |
| 79 | { 0x32, 0x36 }, /* highest */ |
| 80 | }; |
| 81 | |
| 82 | static const u8 TMP401_TEMP_LSB[6][2] = { |
| 83 | { 0x15, 0x10 }, /* temp */ |
| 84 | { 0x17, 0x14 }, /* low limit */ |
| 85 | { 0x16, 0x13 }, /* high limit */ |
| 86 | { 0, 0 }, /* therm (crit) limit (unused) */ |
| 87 | { 0x31, 0x35 }, /* lowest */ |
| 88 | { 0x33, 0x37 }, /* highest */ |
| 89 | }; |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 90 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 91 | static const u8 TMP432_TEMP_MSB_READ[4][3] = { |
| 92 | { 0x00, 0x01, 0x23 }, /* temp */ |
| 93 | { 0x06, 0x08, 0x16 }, /* low limit */ |
| 94 | { 0x05, 0x07, 0x15 }, /* high limit */ |
| 95 | { 0x20, 0x19, 0x1A }, /* therm (crit) limit */ |
| 96 | }; |
| 97 | |
| 98 | static const u8 TMP432_TEMP_MSB_WRITE[4][3] = { |
| 99 | { 0, 0, 0 }, /* temp - unused */ |
| 100 | { 0x0C, 0x0E, 0x16 }, /* low limit */ |
| 101 | { 0x0B, 0x0D, 0x15 }, /* high limit */ |
| 102 | { 0x20, 0x19, 0x1A }, /* therm (crit) limit */ |
| 103 | }; |
| 104 | |
| 105 | static const u8 TMP432_TEMP_LSB[3][3] = { |
| 106 | { 0x29, 0x10, 0x24 }, /* temp */ |
| 107 | { 0x3E, 0x14, 0x18 }, /* low limit */ |
| 108 | { 0x3D, 0x13, 0x17 }, /* high limit */ |
| 109 | }; |
| 110 | |
| 111 | /* [0] = fault, [1] = low, [2] = high, [3] = therm/crit */ |
| 112 | static const u8 TMP432_STATUS_REG[] = { |
| 113 | 0x1b, 0x36, 0x35, 0x37 }; |
| 114 | |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 115 | /* Flags */ |
Guenter Roeck | 947e927 | 2013-03-27 08:48:03 -0700 | [diff] [blame] | 116 | #define TMP401_CONFIG_RANGE BIT(2) |
| 117 | #define TMP401_CONFIG_SHUTDOWN BIT(6) |
| 118 | #define TMP401_STATUS_LOCAL_CRIT BIT(0) |
| 119 | #define TMP401_STATUS_REMOTE_CRIT BIT(1) |
| 120 | #define TMP401_STATUS_REMOTE_OPEN BIT(2) |
| 121 | #define TMP401_STATUS_REMOTE_LOW BIT(3) |
| 122 | #define TMP401_STATUS_REMOTE_HIGH BIT(4) |
| 123 | #define TMP401_STATUS_LOCAL_LOW BIT(5) |
| 124 | #define TMP401_STATUS_LOCAL_HIGH BIT(6) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 125 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 126 | /* On TMP432, each status has its own register */ |
| 127 | #define TMP432_STATUS_LOCAL BIT(0) |
| 128 | #define TMP432_STATUS_REMOTE1 BIT(1) |
| 129 | #define TMP432_STATUS_REMOTE2 BIT(2) |
| 130 | |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 131 | /* Manufacturer / Device ID's */ |
| 132 | #define TMP401_MANUFACTURER_ID 0x55 |
| 133 | #define TMP401_DEVICE_ID 0x11 |
Guenter Roeck | 4ce5b1f | 2013-03-29 17:56:07 -0700 | [diff] [blame] | 134 | #define TMP411A_DEVICE_ID 0x12 |
| 135 | #define TMP411B_DEVICE_ID 0x13 |
| 136 | #define TMP411C_DEVICE_ID 0x10 |
Guenter Roeck | a1fac92 | 2013-03-15 12:55:08 -0700 | [diff] [blame] | 137 | #define TMP431_DEVICE_ID 0x31 |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 138 | #define TMP432_DEVICE_ID 0x32 |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 139 | |
| 140 | /* |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 141 | * Driver data (common to all clients) |
| 142 | */ |
| 143 | |
| 144 | static const struct i2c_device_id tmp401_id[] = { |
| 145 | { "tmp401", tmp401 }, |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 146 | { "tmp411", tmp411 }, |
Guenter Roeck | a1fac92 | 2013-03-15 12:55:08 -0700 | [diff] [blame] | 147 | { "tmp431", tmp431 }, |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 148 | { "tmp432", tmp432 }, |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 149 | { } |
| 150 | }; |
| 151 | MODULE_DEVICE_TABLE(i2c, tmp401_id); |
| 152 | |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 153 | /* |
| 154 | * Client data (each client gets its own) |
| 155 | */ |
| 156 | |
| 157 | struct tmp401_data { |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 158 | struct i2c_client *client; |
| 159 | const struct attribute_group *groups[3]; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 160 | struct mutex update_lock; |
| 161 | char valid; /* zero until following fields are valid */ |
| 162 | unsigned long last_updated; /* in jiffies */ |
Jean Delvare | dc71afe | 2010-03-05 22:17:26 +0100 | [diff] [blame] | 163 | enum chips kind; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 164 | |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 165 | unsigned int update_interval; /* in milliseconds */ |
| 166 | |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 167 | /* register values */ |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 168 | u8 status[4]; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 169 | u8 config; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 170 | u16 temp[6][3]; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 171 | u8 temp_crit_hyst; |
| 172 | }; |
| 173 | |
| 174 | /* |
| 175 | * Sysfs attr show / store functions |
| 176 | */ |
| 177 | |
| 178 | static int tmp401_register_to_temp(u16 reg, u8 config) |
| 179 | { |
| 180 | int temp = reg; |
| 181 | |
| 182 | if (config & TMP401_CONFIG_RANGE) |
| 183 | temp -= 64 * 256; |
| 184 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 185 | return DIV_ROUND_CLOSEST(temp * 125, 32); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 188 | static u16 tmp401_temp_to_register(long temp, u8 config, int zbits) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 189 | { |
| 190 | if (config & TMP401_CONFIG_RANGE) { |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 191 | temp = clamp_val(temp, -64000, 191000); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 192 | temp += 64000; |
| 193 | } else |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 194 | temp = clamp_val(temp, 0, 127000); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 195 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 196 | return DIV_ROUND_CLOSEST(temp * (1 << (8 - zbits)), 1000) << zbits; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 197 | } |
| 198 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 199 | static int tmp401_update_device_reg16(struct i2c_client *client, |
| 200 | struct tmp401_data *data) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 201 | { |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 202 | int i, j, val; |
| 203 | int num_regs = data->kind == tmp411 ? 6 : 4; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 204 | int num_sensors = data->kind == tmp432 ? 3 : 2; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 205 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 206 | for (i = 0; i < num_sensors; i++) { /* local / r1 / r2 */ |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 207 | for (j = 0; j < num_regs; j++) { /* temp / low / ... */ |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 208 | u8 regaddr; |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 209 | /* |
| 210 | * High byte must be read first immediately followed |
| 211 | * by the low byte |
| 212 | */ |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 213 | regaddr = data->kind == tmp432 ? |
| 214 | TMP432_TEMP_MSB_READ[j][i] : |
| 215 | TMP401_TEMP_MSB_READ[j][i]; |
| 216 | val = i2c_smbus_read_byte_data(client, regaddr); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 217 | if (val < 0) |
| 218 | return val; |
| 219 | data->temp[j][i] = val << 8; |
| 220 | if (j == 3) /* crit is msb only */ |
| 221 | continue; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 222 | regaddr = data->kind == tmp432 ? TMP432_TEMP_LSB[j][i] |
| 223 | : TMP401_TEMP_LSB[j][i]; |
| 224 | val = i2c_smbus_read_byte_data(client, regaddr); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 225 | if (val < 0) |
| 226 | return val; |
| 227 | data->temp[j][i] |= val; |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 228 | } |
| 229 | } |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 230 | return 0; |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | static struct tmp401_data *tmp401_update_device(struct device *dev) |
| 234 | { |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 235 | struct tmp401_data *data = dev_get_drvdata(dev); |
| 236 | struct i2c_client *client = data->client; |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 237 | struct tmp401_data *ret = data; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 238 | int i, val; |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 239 | unsigned long next_update; |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 240 | |
| 241 | mutex_lock(&data->update_lock); |
| 242 | |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 243 | next_update = data->last_updated + |
Jean Delvare | 4e2284d | 2013-05-19 16:57:30 +0200 | [diff] [blame] | 244 | msecs_to_jiffies(data->update_interval); |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 245 | if (time_after(jiffies, next_update) || !data->valid) { |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 246 | if (data->kind != tmp432) { |
| 247 | /* |
| 248 | * The driver uses the TMP432 status format internally. |
| 249 | * Convert status to TMP432 format for other chips. |
| 250 | */ |
| 251 | val = i2c_smbus_read_byte_data(client, TMP401_STATUS); |
| 252 | if (val < 0) { |
| 253 | ret = ERR_PTR(val); |
| 254 | goto abort; |
| 255 | } |
| 256 | data->status[0] = |
| 257 | (val & TMP401_STATUS_REMOTE_OPEN) >> 1; |
| 258 | data->status[1] = |
| 259 | ((val & TMP401_STATUS_REMOTE_LOW) >> 2) | |
| 260 | ((val & TMP401_STATUS_LOCAL_LOW) >> 5); |
| 261 | data->status[2] = |
| 262 | ((val & TMP401_STATUS_REMOTE_HIGH) >> 3) | |
| 263 | ((val & TMP401_STATUS_LOCAL_HIGH) >> 6); |
| 264 | data->status[3] = val & (TMP401_STATUS_LOCAL_CRIT |
| 265 | | TMP401_STATUS_REMOTE_CRIT); |
| 266 | } else { |
| 267 | for (i = 0; i < ARRAY_SIZE(data->status); i++) { |
| 268 | val = i2c_smbus_read_byte_data(client, |
| 269 | TMP432_STATUS_REG[i]); |
| 270 | if (val < 0) { |
| 271 | ret = ERR_PTR(val); |
| 272 | goto abort; |
| 273 | } |
| 274 | data->status[i] = val; |
| 275 | } |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 276 | } |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 277 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 278 | val = i2c_smbus_read_byte_data(client, TMP401_CONFIG_READ); |
| 279 | if (val < 0) { |
| 280 | ret = ERR_PTR(val); |
| 281 | goto abort; |
| 282 | } |
| 283 | data->config = val; |
| 284 | val = tmp401_update_device_reg16(client, data); |
| 285 | if (val < 0) { |
| 286 | ret = ERR_PTR(val); |
| 287 | goto abort; |
| 288 | } |
| 289 | val = i2c_smbus_read_byte_data(client, TMP401_TEMP_CRIT_HYST); |
| 290 | if (val < 0) { |
| 291 | ret = ERR_PTR(val); |
| 292 | goto abort; |
| 293 | } |
| 294 | data->temp_crit_hyst = val; |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 295 | |
| 296 | data->last_updated = jiffies; |
| 297 | data->valid = 1; |
| 298 | } |
| 299 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 300 | abort: |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 301 | mutex_unlock(&data->update_lock); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 302 | return ret; |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 303 | } |
| 304 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 305 | static ssize_t show_temp(struct device *dev, |
| 306 | struct device_attribute *devattr, char *buf) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 307 | { |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 308 | int nr = to_sensor_dev_attr_2(devattr)->nr; |
| 309 | int index = to_sensor_dev_attr_2(devattr)->index; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 310 | struct tmp401_data *data = tmp401_update_device(dev); |
| 311 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 312 | if (IS_ERR(data)) |
| 313 | return PTR_ERR(data); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 314 | |
| 315 | return sprintf(buf, "%d\n", |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 316 | tmp401_register_to_temp(data->temp[nr][index], data->config)); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | static ssize_t show_temp_crit_hyst(struct device *dev, |
| 320 | struct device_attribute *devattr, char *buf) |
| 321 | { |
| 322 | int temp, index = to_sensor_dev_attr(devattr)->index; |
| 323 | struct tmp401_data *data = tmp401_update_device(dev); |
| 324 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 325 | if (IS_ERR(data)) |
| 326 | return PTR_ERR(data); |
| 327 | |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 328 | mutex_lock(&data->update_lock); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 329 | temp = tmp401_register_to_temp(data->temp[3][index], data->config); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 330 | temp -= data->temp_crit_hyst * 1000; |
| 331 | mutex_unlock(&data->update_lock); |
| 332 | |
| 333 | return sprintf(buf, "%d\n", temp); |
| 334 | } |
| 335 | |
| 336 | static ssize_t show_status(struct device *dev, |
| 337 | struct device_attribute *devattr, char *buf) |
| 338 | { |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 339 | int nr = to_sensor_dev_attr_2(devattr)->nr; |
| 340 | int mask = to_sensor_dev_attr_2(devattr)->index; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 341 | struct tmp401_data *data = tmp401_update_device(dev); |
| 342 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 343 | if (IS_ERR(data)) |
| 344 | return PTR_ERR(data); |
| 345 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 346 | return sprintf(buf, "%d\n", !!(data->status[nr] & mask)); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 347 | } |
| 348 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 349 | static ssize_t store_temp(struct device *dev, struct device_attribute *devattr, |
| 350 | const char *buf, size_t count) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 351 | { |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 352 | int nr = to_sensor_dev_attr_2(devattr)->nr; |
| 353 | int index = to_sensor_dev_attr_2(devattr)->index; |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 354 | struct tmp401_data *data = dev_get_drvdata(dev); |
| 355 | struct i2c_client *client = data->client; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 356 | long val; |
| 357 | u16 reg; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 358 | u8 regaddr; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 359 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 360 | if (kstrtol(buf, 10, &val)) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 361 | return -EINVAL; |
| 362 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 363 | reg = tmp401_temp_to_register(val, data->config, nr == 3 ? 8 : 4); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 364 | |
| 365 | mutex_lock(&data->update_lock); |
| 366 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 367 | regaddr = data->kind == tmp432 ? TMP432_TEMP_MSB_WRITE[nr][index] |
| 368 | : TMP401_TEMP_MSB_WRITE[nr][index]; |
| 369 | i2c_smbus_write_byte_data(client, regaddr, reg >> 8); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 370 | if (nr != 3) { |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 371 | regaddr = data->kind == tmp432 ? TMP432_TEMP_LSB[nr][index] |
| 372 | : TMP401_TEMP_LSB[nr][index]; |
| 373 | i2c_smbus_write_byte_data(client, regaddr, reg & 0xFF); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 374 | } |
| 375 | data->temp[nr][index] = reg; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 376 | |
| 377 | mutex_unlock(&data->update_lock); |
| 378 | |
| 379 | return count; |
| 380 | } |
| 381 | |
| 382 | static ssize_t store_temp_crit_hyst(struct device *dev, struct device_attribute |
| 383 | *devattr, const char *buf, size_t count) |
| 384 | { |
| 385 | int temp, index = to_sensor_dev_attr(devattr)->index; |
| 386 | struct tmp401_data *data = tmp401_update_device(dev); |
| 387 | long val; |
| 388 | u8 reg; |
| 389 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 390 | if (IS_ERR(data)) |
| 391 | return PTR_ERR(data); |
| 392 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 393 | if (kstrtol(buf, 10, &val)) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 394 | return -EINVAL; |
| 395 | |
| 396 | if (data->config & TMP401_CONFIG_RANGE) |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 397 | val = clamp_val(val, -64000, 191000); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 398 | else |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 399 | val = clamp_val(val, 0, 127000); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 400 | |
| 401 | mutex_lock(&data->update_lock); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 402 | temp = tmp401_register_to_temp(data->temp[3][index], data->config); |
Guenter Roeck | 2a844c1 | 2013-01-09 08:09:34 -0800 | [diff] [blame] | 403 | val = clamp_val(val, temp - 255000, temp); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 404 | reg = ((temp - val) + 500) / 1000; |
| 405 | |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 406 | i2c_smbus_write_byte_data(data->client, TMP401_TEMP_CRIT_HYST, |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 407 | reg); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 408 | |
| 409 | data->temp_crit_hyst = reg; |
| 410 | |
| 411 | mutex_unlock(&data->update_lock); |
| 412 | |
| 413 | return count; |
| 414 | } |
| 415 | |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 416 | /* |
| 417 | * Resets the historical measurements of minimum and maximum temperatures. |
| 418 | * This is done by writing any value to any of the minimum/maximum registers |
| 419 | * (0x30-0x37). |
| 420 | */ |
| 421 | static ssize_t reset_temp_history(struct device *dev, |
| 422 | struct device_attribute *devattr, const char *buf, size_t count) |
| 423 | { |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 424 | struct tmp401_data *data = dev_get_drvdata(dev); |
| 425 | struct i2c_client *client = data->client; |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 426 | long val; |
| 427 | |
Frans Meulenbroeks | 179c4fd | 2012-01-04 20:58:52 +0100 | [diff] [blame] | 428 | if (kstrtol(buf, 10, &val)) |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 429 | return -EINVAL; |
| 430 | |
| 431 | if (val != 1) { |
Guenter Roeck | b55f375 | 2013-01-10 10:01:24 -0800 | [diff] [blame] | 432 | dev_err(dev, |
| 433 | "temp_reset_history value %ld not supported. Use 1 to reset the history!\n", |
| 434 | val); |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 435 | return -EINVAL; |
| 436 | } |
Guenter Roeck | 8eb6d90 | 2013-04-14 04:39:46 -0700 | [diff] [blame] | 437 | mutex_lock(&data->update_lock); |
| 438 | i2c_smbus_write_byte_data(client, TMP401_TEMP_MSB_WRITE[5][0], val); |
| 439 | data->valid = 0; |
| 440 | mutex_unlock(&data->update_lock); |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 441 | |
| 442 | return count; |
| 443 | } |
| 444 | |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 445 | static ssize_t show_update_interval(struct device *dev, |
| 446 | struct device_attribute *attr, char *buf) |
| 447 | { |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 448 | struct tmp401_data *data = dev_get_drvdata(dev); |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 449 | |
| 450 | return sprintf(buf, "%u\n", data->update_interval); |
| 451 | } |
| 452 | |
| 453 | static ssize_t set_update_interval(struct device *dev, |
| 454 | struct device_attribute *attr, |
| 455 | const char *buf, size_t count) |
| 456 | { |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 457 | struct tmp401_data *data = dev_get_drvdata(dev); |
| 458 | struct i2c_client *client = data->client; |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 459 | unsigned long val; |
| 460 | int err, rate; |
| 461 | |
| 462 | err = kstrtoul(buf, 10, &val); |
| 463 | if (err) |
| 464 | return err; |
| 465 | |
| 466 | /* |
| 467 | * For valid rates, interval can be calculated as |
| 468 | * interval = (1 << (7 - rate)) * 125; |
| 469 | * Rounded rate is therefore |
| 470 | * rate = 7 - __fls(interval * 4 / (125 * 3)); |
| 471 | * Use clamp_val() to avoid overflows, and to ensure valid input |
| 472 | * for __fls. |
| 473 | */ |
| 474 | val = clamp_val(val, 125, 16000); |
| 475 | rate = 7 - __fls(val * 4 / (125 * 3)); |
| 476 | mutex_lock(&data->update_lock); |
| 477 | i2c_smbus_write_byte_data(client, TMP401_CONVERSION_RATE_WRITE, rate); |
| 478 | data->update_interval = (1 << (7 - rate)) * 125; |
| 479 | mutex_unlock(&data->update_lock); |
| 480 | |
| 481 | return count; |
| 482 | } |
| 483 | |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 484 | static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp, NULL, 0, 0); |
| 485 | static SENSOR_DEVICE_ATTR_2(temp1_min, S_IWUSR | S_IRUGO, show_temp, |
| 486 | store_temp, 1, 0); |
| 487 | static SENSOR_DEVICE_ATTR_2(temp1_max, S_IWUSR | S_IRUGO, show_temp, |
| 488 | store_temp, 2, 0); |
| 489 | static SENSOR_DEVICE_ATTR_2(temp1_crit, S_IWUSR | S_IRUGO, show_temp, |
| 490 | store_temp, 3, 0); |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 491 | static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, |
| 492 | show_temp_crit_hyst, store_temp_crit_hyst, 0); |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 493 | static SENSOR_DEVICE_ATTR_2(temp1_min_alarm, S_IRUGO, show_status, NULL, |
| 494 | 1, TMP432_STATUS_LOCAL); |
| 495 | static SENSOR_DEVICE_ATTR_2(temp1_max_alarm, S_IRUGO, show_status, NULL, |
| 496 | 2, TMP432_STATUS_LOCAL); |
| 497 | static SENSOR_DEVICE_ATTR_2(temp1_crit_alarm, S_IRUGO, show_status, NULL, |
| 498 | 3, TMP432_STATUS_LOCAL); |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 499 | static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp, NULL, 0, 1); |
| 500 | static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp, |
| 501 | store_temp, 1, 1); |
| 502 | static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp, |
| 503 | store_temp, 2, 1); |
| 504 | static SENSOR_DEVICE_ATTR_2(temp2_crit, S_IWUSR | S_IRUGO, show_temp, |
| 505 | store_temp, 3, 1); |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 506 | static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temp_crit_hyst, |
| 507 | NULL, 1); |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 508 | static SENSOR_DEVICE_ATTR_2(temp2_fault, S_IRUGO, show_status, NULL, |
| 509 | 0, TMP432_STATUS_REMOTE1); |
| 510 | static SENSOR_DEVICE_ATTR_2(temp2_min_alarm, S_IRUGO, show_status, NULL, |
| 511 | 1, TMP432_STATUS_REMOTE1); |
| 512 | static SENSOR_DEVICE_ATTR_2(temp2_max_alarm, S_IRUGO, show_status, NULL, |
| 513 | 2, TMP432_STATUS_REMOTE1); |
| 514 | static SENSOR_DEVICE_ATTR_2(temp2_crit_alarm, S_IRUGO, show_status, NULL, |
| 515 | 3, TMP432_STATUS_REMOTE1); |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 516 | |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 517 | static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval, |
| 518 | set_update_interval); |
| 519 | |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 520 | static struct attribute *tmp401_attributes[] = { |
| 521 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 522 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
| 523 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 524 | &sensor_dev_attr_temp1_crit.dev_attr.attr, |
| 525 | &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr, |
| 526 | &sensor_dev_attr_temp1_max_alarm.dev_attr.attr, |
| 527 | &sensor_dev_attr_temp1_min_alarm.dev_attr.attr, |
| 528 | &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr, |
| 529 | |
| 530 | &sensor_dev_attr_temp2_input.dev_attr.attr, |
| 531 | &sensor_dev_attr_temp2_min.dev_attr.attr, |
| 532 | &sensor_dev_attr_temp2_max.dev_attr.attr, |
| 533 | &sensor_dev_attr_temp2_crit.dev_attr.attr, |
| 534 | &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr, |
| 535 | &sensor_dev_attr_temp2_fault.dev_attr.attr, |
| 536 | &sensor_dev_attr_temp2_max_alarm.dev_attr.attr, |
| 537 | &sensor_dev_attr_temp2_min_alarm.dev_attr.attr, |
| 538 | &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr, |
| 539 | |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 540 | &dev_attr_update_interval.attr, |
| 541 | |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 542 | NULL |
| 543 | }; |
| 544 | |
| 545 | static const struct attribute_group tmp401_group = { |
| 546 | .attrs = tmp401_attributes, |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 547 | }; |
| 548 | |
| 549 | /* |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 550 | * Additional features of the TMP411 chip. |
| 551 | * The TMP411 stores the minimum and maximum |
| 552 | * temperature measured since power-on, chip-reset, or |
| 553 | * minimum and maximum register reset for both the local |
| 554 | * and remote channels. |
| 555 | */ |
Guenter Roeck | 14f2a66 | 2013-03-27 21:23:10 -0700 | [diff] [blame] | 556 | static SENSOR_DEVICE_ATTR_2(temp1_lowest, S_IRUGO, show_temp, NULL, 4, 0); |
| 557 | static SENSOR_DEVICE_ATTR_2(temp1_highest, S_IRUGO, show_temp, NULL, 5, 0); |
| 558 | static SENSOR_DEVICE_ATTR_2(temp2_lowest, S_IRUGO, show_temp, NULL, 4, 1); |
| 559 | static SENSOR_DEVICE_ATTR_2(temp2_highest, S_IRUGO, show_temp, NULL, 5, 1); |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 560 | static SENSOR_DEVICE_ATTR(temp_reset_history, S_IWUSR, NULL, reset_temp_history, |
| 561 | 0); |
| 562 | |
| 563 | static struct attribute *tmp411_attributes[] = { |
| 564 | &sensor_dev_attr_temp1_highest.dev_attr.attr, |
| 565 | &sensor_dev_attr_temp1_lowest.dev_attr.attr, |
| 566 | &sensor_dev_attr_temp2_highest.dev_attr.attr, |
| 567 | &sensor_dev_attr_temp2_lowest.dev_attr.attr, |
| 568 | &sensor_dev_attr_temp_reset_history.dev_attr.attr, |
| 569 | NULL |
| 570 | }; |
| 571 | |
| 572 | static const struct attribute_group tmp411_group = { |
| 573 | .attrs = tmp411_attributes, |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 574 | }; |
| 575 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 576 | static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 0, 2); |
| 577 | static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp, |
| 578 | store_temp, 1, 2); |
| 579 | static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp, |
| 580 | store_temp, 2, 2); |
| 581 | static SENSOR_DEVICE_ATTR_2(temp3_crit, S_IWUSR | S_IRUGO, show_temp, |
| 582 | store_temp, 3, 2); |
| 583 | static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temp_crit_hyst, |
| 584 | NULL, 2); |
| 585 | static SENSOR_DEVICE_ATTR_2(temp3_fault, S_IRUGO, show_status, NULL, |
| 586 | 0, TMP432_STATUS_REMOTE2); |
| 587 | static SENSOR_DEVICE_ATTR_2(temp3_min_alarm, S_IRUGO, show_status, NULL, |
| 588 | 1, TMP432_STATUS_REMOTE2); |
| 589 | static SENSOR_DEVICE_ATTR_2(temp3_max_alarm, S_IRUGO, show_status, NULL, |
| 590 | 2, TMP432_STATUS_REMOTE2); |
| 591 | static SENSOR_DEVICE_ATTR_2(temp3_crit_alarm, S_IRUGO, show_status, NULL, |
| 592 | 3, TMP432_STATUS_REMOTE2); |
| 593 | |
| 594 | static struct attribute *tmp432_attributes[] = { |
| 595 | &sensor_dev_attr_temp3_input.dev_attr.attr, |
| 596 | &sensor_dev_attr_temp3_min.dev_attr.attr, |
| 597 | &sensor_dev_attr_temp3_max.dev_attr.attr, |
| 598 | &sensor_dev_attr_temp3_crit.dev_attr.attr, |
| 599 | &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr, |
| 600 | &sensor_dev_attr_temp3_fault.dev_attr.attr, |
| 601 | &sensor_dev_attr_temp3_max_alarm.dev_attr.attr, |
| 602 | &sensor_dev_attr_temp3_min_alarm.dev_attr.attr, |
| 603 | &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr, |
| 604 | |
| 605 | NULL |
| 606 | }; |
| 607 | |
| 608 | static const struct attribute_group tmp432_group = { |
| 609 | .attrs = tmp432_attributes, |
| 610 | }; |
| 611 | |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 612 | /* |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 613 | * Begin non sysfs callback code (aka Real code) |
| 614 | */ |
| 615 | |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 616 | static void tmp401_init_client(struct tmp401_data *data, |
| 617 | struct i2c_client *client) |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 618 | { |
| 619 | int config, config_orig; |
| 620 | |
| 621 | /* Set the conversion rate to 2 Hz */ |
| 622 | i2c_smbus_write_byte_data(client, TMP401_CONVERSION_RATE_WRITE, 5); |
Guenter Roeck | 0846e30 | 2013-03-28 02:03:10 -0700 | [diff] [blame] | 623 | data->update_interval = 500; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 624 | |
| 625 | /* Start conversions (disable shutdown if necessary) */ |
| 626 | config = i2c_smbus_read_byte_data(client, TMP401_CONFIG_READ); |
| 627 | if (config < 0) { |
| 628 | dev_warn(&client->dev, "Initialization failed!\n"); |
| 629 | return; |
| 630 | } |
| 631 | |
| 632 | config_orig = config; |
| 633 | config &= ~TMP401_CONFIG_SHUTDOWN; |
| 634 | |
| 635 | if (config != config_orig) |
| 636 | i2c_smbus_write_byte_data(client, TMP401_CONFIG_WRITE, config); |
| 637 | } |
| 638 | |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 639 | static int tmp401_detect(struct i2c_client *client, |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 640 | struct i2c_board_info *info) |
| 641 | { |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 642 | enum chips kind; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 643 | struct i2c_adapter *adapter = client->adapter; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 644 | u8 reg; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 645 | |
| 646 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) |
| 647 | return -ENODEV; |
| 648 | |
| 649 | /* Detect and identify the chip */ |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 650 | reg = i2c_smbus_read_byte_data(client, TMP401_MANUFACTURER_ID_REG); |
| 651 | if (reg != TMP401_MANUFACTURER_ID) |
| 652 | return -ENODEV; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 653 | |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 654 | reg = i2c_smbus_read_byte_data(client, TMP401_DEVICE_ID_REG); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 655 | |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 656 | switch (reg) { |
| 657 | case TMP401_DEVICE_ID: |
Guenter Roeck | a1fac92 | 2013-03-15 12:55:08 -0700 | [diff] [blame] | 658 | if (client->addr != 0x4c) |
| 659 | return -ENODEV; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 660 | kind = tmp401; |
| 661 | break; |
Guenter Roeck | 4ce5b1f | 2013-03-29 17:56:07 -0700 | [diff] [blame] | 662 | case TMP411A_DEVICE_ID: |
| 663 | if (client->addr != 0x4c) |
| 664 | return -ENODEV; |
| 665 | kind = tmp411; |
| 666 | break; |
| 667 | case TMP411B_DEVICE_ID: |
| 668 | if (client->addr != 0x4d) |
| 669 | return -ENODEV; |
| 670 | kind = tmp411; |
| 671 | break; |
| 672 | case TMP411C_DEVICE_ID: |
| 673 | if (client->addr != 0x4e) |
| 674 | return -ENODEV; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 675 | kind = tmp411; |
| 676 | break; |
Guenter Roeck | a1fac92 | 2013-03-15 12:55:08 -0700 | [diff] [blame] | 677 | case TMP431_DEVICE_ID: |
| 678 | if (client->addr == 0x4e) |
| 679 | return -ENODEV; |
| 680 | kind = tmp431; |
| 681 | break; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 682 | case TMP432_DEVICE_ID: |
| 683 | if (client->addr == 0x4e) |
| 684 | return -ENODEV; |
| 685 | kind = tmp432; |
| 686 | break; |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 687 | default: |
| 688 | return -ENODEV; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 689 | } |
Jean Delvare | dbe73c8 | 2009-12-09 20:35:54 +0100 | [diff] [blame] | 690 | |
| 691 | reg = i2c_smbus_read_byte_data(client, TMP401_CONFIG_READ); |
| 692 | if (reg & 0x1b) |
| 693 | return -ENODEV; |
| 694 | |
| 695 | reg = i2c_smbus_read_byte_data(client, TMP401_CONVERSION_RATE_READ); |
| 696 | /* Datasheet says: 0x1-0x6 */ |
| 697 | if (reg > 15) |
| 698 | return -ENODEV; |
| 699 | |
Jean Delvare | dc71afe | 2010-03-05 22:17:26 +0100 | [diff] [blame] | 700 | strlcpy(info->type, tmp401_id[kind].name, I2C_NAME_SIZE); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 701 | |
| 702 | return 0; |
| 703 | } |
| 704 | |
| 705 | static int tmp401_probe(struct i2c_client *client, |
| 706 | const struct i2c_device_id *id) |
| 707 | { |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 708 | const char *names[] = { "TMP401", "TMP411", "TMP431", "TMP432" }; |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 709 | struct device *dev = &client->dev; |
| 710 | struct device *hwmon_dev; |
| 711 | struct tmp401_data *data; |
| 712 | int groups = 0; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 713 | |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 714 | data = devm_kzalloc(dev, sizeof(struct tmp401_data), GFP_KERNEL); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 715 | if (!data) |
| 716 | return -ENOMEM; |
| 717 | |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 718 | data->client = client; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 719 | mutex_init(&data->update_lock); |
Andre Prendel | fce0758 | 2009-06-15 18:39:47 +0200 | [diff] [blame] | 720 | data->kind = id->driver_data; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 721 | |
| 722 | /* Initialize the TMP401 chip */ |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 723 | tmp401_init_client(data, client); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 724 | |
| 725 | /* Register sysfs hooks */ |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 726 | data->groups[groups++] = &tmp401_group; |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 727 | |
| 728 | /* Register additional tmp411 sysfs hooks */ |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 729 | if (data->kind == tmp411) |
| 730 | data->groups[groups++] = &tmp411_group; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 731 | |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 732 | /* Register additional tmp432 sysfs hooks */ |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 733 | if (data->kind == tmp432) |
| 734 | data->groups[groups++] = &tmp432_group; |
Guenter Roeck | 29dd3b6 | 2013-03-28 01:36:44 -0700 | [diff] [blame] | 735 | |
Guenter Roeck | f3643ac | 2013-09-04 16:24:09 -0700 | [diff] [blame] | 736 | hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name, |
| 737 | data, data->groups); |
| 738 | if (IS_ERR(hwmon_dev)) |
| 739 | return PTR_ERR(hwmon_dev); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 740 | |
Guenter Roeck | b4e665c | 2013-03-27 08:58:46 -0700 | [diff] [blame] | 741 | dev_info(dev, "Detected TI %s chip\n", names[data->kind]); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 742 | |
| 743 | return 0; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 744 | } |
| 745 | |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 746 | static struct i2c_driver tmp401_driver = { |
| 747 | .class = I2C_CLASS_HWMON, |
| 748 | .driver = { |
| 749 | .name = "tmp401", |
| 750 | }, |
| 751 | .probe = tmp401_probe, |
Andre Prendel | ea63c2b | 2010-05-27 19:58:49 +0200 | [diff] [blame] | 752 | .id_table = tmp401_id, |
| 753 | .detect = tmp401_detect, |
| 754 | .address_list = normal_i2c, |
| 755 | }; |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 756 | |
Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 757 | module_i2c_driver(tmp401_driver); |
Hans de Goede | ab2b79d | 2009-06-15 18:39:46 +0200 | [diff] [blame] | 758 | |
| 759 | MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>"); |
| 760 | MODULE_DESCRIPTION("Texas Instruments TMP401 temperature sensor driver"); |
| 761 | MODULE_LICENSE("GPL"); |