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