Thomas Gleixner | c942fdd | 2019-05-27 08:55:06 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * lm92 - Hardware monitoring driver |
Jean Delvare | 7c81c60f | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 4 | * Copyright (C) 2005-2008 Jean Delvare <jdelvare@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Based on the lm90 driver, with some ideas taken from the lm_sensors |
| 7 | * lm92 driver as well. |
| 8 | * |
| 9 | * The LM92 is a sensor chip made by National Semiconductor. It reports |
| 10 | * its own temperature with a 0.0625 deg resolution and a 0.33 deg |
| 11 | * accuracy. Complete datasheet can be obtained from National's website |
| 12 | * at: |
| 13 | * http://www.national.com/pf/LM/LM92.html |
| 14 | * |
| 15 | * This driver also supports the MAX6635 sensor chip made by Maxim. |
| 16 | * This chip is compatible with the LM92, but has a lesser accuracy |
| 17 | * (1.0 deg). Complete datasheet can be obtained from Maxim's website |
| 18 | * at: |
| 19 | * http://www.maxim-ic.com/quick_view2.cfm/qv_pk/3074 |
| 20 | * |
| 21 | * Since the LM92 was the first chipset supported by this driver, most |
| 22 | * comments will refer to this chipset, but are actually general and |
| 23 | * concern all supported chipsets, unless mentioned otherwise. |
| 24 | * |
| 25 | * Support could easily be added for the National Semiconductor LM76 |
| 26 | * and Maxim MAX6633 and MAX6634 chips, which are mostly compatible |
| 27 | * with the LM92. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | */ |
| 29 | |
| 30 | #include <linux/module.h> |
| 31 | #include <linux/init.h> |
| 32 | #include <linux/slab.h> |
| 33 | #include <linux/i2c.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 34 | #include <linux/hwmon.h> |
Jean Delvare | 6cb59e9 | 2008-01-06 15:25:52 +0100 | [diff] [blame] | 35 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 36 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 37 | #include <linux/mutex.h> |
Jean Delvare | dcd8f39 | 2012-10-10 15:25:56 +0200 | [diff] [blame] | 38 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Guenter Roeck | a318afd | 2012-01-14 21:04:18 -0800 | [diff] [blame] | 40 | /* |
| 41 | * The LM92 and MAX6635 have 2 two-state pins for address selection, |
| 42 | * resulting in 4 possible addresses. |
| 43 | */ |
Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 44 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
| 45 | I2C_CLIENT_END }; |
Alvaro G. M | 10ecacd | 2018-03-22 15:37:44 +0100 | [diff] [blame] | 46 | enum chips { lm92, max6635 }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | /* The LM92 registers */ |
| 49 | #define LM92_REG_CONFIG 0x01 /* 8-bit, RW */ |
| 50 | #define LM92_REG_TEMP 0x00 /* 16-bit, RO */ |
| 51 | #define LM92_REG_TEMP_HYST 0x02 /* 16-bit, RW */ |
| 52 | #define LM92_REG_TEMP_CRIT 0x03 /* 16-bit, RW */ |
| 53 | #define LM92_REG_TEMP_LOW 0x04 /* 16-bit, RW */ |
| 54 | #define LM92_REG_TEMP_HIGH 0x05 /* 16-bit, RW */ |
| 55 | #define LM92_REG_MAN_ID 0x07 /* 16-bit, RO, LM92 only */ |
| 56 | |
Guenter Roeck | a318afd | 2012-01-14 21:04:18 -0800 | [diff] [blame] | 57 | /* |
| 58 | * The LM92 uses signed 13-bit values with LSB = 0.0625 degree Celsius, |
| 59 | * left-justified in 16-bit registers. No rounding is done, with such |
| 60 | * a resolution it's just not worth it. Note that the MAX6635 doesn't |
| 61 | * make use of the 4 lower bits for limits (i.e. effective resolution |
| 62 | * for limits is 1 degree Celsius). |
| 63 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | static inline int TEMP_FROM_REG(s16 reg) |
| 65 | { |
| 66 | return reg / 8 * 625 / 10; |
| 67 | } |
| 68 | |
Axel Lin | 5b96308 | 2014-08-05 10:08:31 +0800 | [diff] [blame] | 69 | static inline s16 TEMP_TO_REG(long val) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
Axel Lin | 5b96308 | 2014-08-05 10:08:31 +0800 | [diff] [blame] | 71 | val = clamp_val(val, -60000, 160000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | return val * 10 / 625 * 8; |
| 73 | } |
| 74 | |
| 75 | /* Alarm flags are stored in the 3 LSB of the temperature register */ |
| 76 | static inline u8 ALARMS_FROM_REG(s16 reg) |
| 77 | { |
| 78 | return reg & 0x0007; |
| 79 | } |
| 80 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 81 | enum temp_index { |
| 82 | t_input, |
| 83 | t_crit, |
| 84 | t_min, |
| 85 | t_max, |
| 86 | t_hyst, |
| 87 | t_num_regs |
| 88 | }; |
| 89 | |
| 90 | static const u8 regs[t_num_regs] = { |
| 91 | [t_input] = LM92_REG_TEMP, |
| 92 | [t_crit] = LM92_REG_TEMP_CRIT, |
| 93 | [t_min] = LM92_REG_TEMP_LOW, |
| 94 | [t_max] = LM92_REG_TEMP_HIGH, |
| 95 | [t_hyst] = LM92_REG_TEMP_HYST, |
| 96 | }; |
| 97 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | /* Client data (each client gets its own) */ |
| 99 | struct lm92_data { |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 100 | struct i2c_client *client; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 101 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | char valid; /* zero until following fields are valid */ |
| 103 | unsigned long last_updated; /* in jiffies */ |
| 104 | |
| 105 | /* registers values */ |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 106 | s16 temp[t_num_regs]; /* index with enum temp_index */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | }; |
| 108 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | /* |
| 110 | * Sysfs attributes and callback functions |
| 111 | */ |
| 112 | |
| 113 | static struct lm92_data *lm92_update_device(struct device *dev) |
| 114 | { |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 115 | struct lm92_data *data = dev_get_drvdata(dev); |
| 116 | struct i2c_client *client = data->client; |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 117 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 119 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 121 | if (time_after(jiffies, data->last_updated + HZ) || |
| 122 | !data->valid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | dev_dbg(&client->dev, "Updating lm92 data\n"); |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 124 | for (i = 0; i < t_num_regs; i++) { |
| 125 | data->temp[i] = |
| 126 | i2c_smbus_read_word_swapped(client, regs[i]); |
| 127 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | data->last_updated = jiffies; |
| 129 | data->valid = 1; |
| 130 | } |
| 131 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 132 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | |
| 134 | return data; |
| 135 | } |
| 136 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 137 | static ssize_t temp_show(struct device *dev, struct device_attribute *devattr, |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 138 | char *buf) |
| 139 | { |
| 140 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
| 141 | struct lm92_data *data = lm92_update_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 143 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[attr->index])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 146 | static ssize_t temp_store(struct device *dev, |
| 147 | struct device_attribute *devattr, const char *buf, |
| 148 | size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | { |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 150 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 151 | struct lm92_data *data = dev_get_drvdata(dev); |
| 152 | struct i2c_client *client = data->client; |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 153 | int nr = attr->index; |
| 154 | long val; |
| 155 | int err; |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 156 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 157 | err = kstrtol(buf, 10, &val); |
| 158 | if (err) |
| 159 | return err; |
| 160 | |
| 161 | mutex_lock(&data->update_lock); |
| 162 | data->temp[nr] = TEMP_TO_REG(val); |
| 163 | i2c_smbus_write_word_swapped(client, regs[nr], data->temp[nr]); |
| 164 | mutex_unlock(&data->update_lock); |
| 165 | return count; |
| 166 | } |
| 167 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 168 | static ssize_t temp_hyst_show(struct device *dev, |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 169 | struct device_attribute *devattr, char *buf) |
| 170 | { |
| 171 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
| 172 | struct lm92_data *data = lm92_update_device(dev); |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 173 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 174 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[attr->index]) |
| 175 | - TEMP_FROM_REG(data->temp[t_hyst])); |
| 176 | } |
| 177 | |
Julia Lawall | 3dba95d | 2016-12-22 13:04:54 +0100 | [diff] [blame] | 178 | static ssize_t temp1_min_hyst_show(struct device *dev, |
| 179 | struct device_attribute *attr, char *buf) |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 180 | { |
| 181 | struct lm92_data *data = lm92_update_device(dev); |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 182 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 183 | return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[t_min]) |
| 184 | + TEMP_FROM_REG(data->temp[t_hyst])); |
| 185 | } |
| 186 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 187 | static ssize_t temp_hyst_store(struct device *dev, |
| 188 | struct device_attribute *devattr, |
| 189 | const char *buf, size_t count) |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 190 | { |
| 191 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 192 | struct lm92_data *data = dev_get_drvdata(dev); |
| 193 | struct i2c_client *client = data->client; |
Guenter Roeck | a318afd | 2012-01-14 21:04:18 -0800 | [diff] [blame] | 194 | long val; |
| 195 | int err; |
| 196 | |
| 197 | err = kstrtol(buf, 10, &val); |
| 198 | if (err) |
| 199 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Axel Lin | 5b96308 | 2014-08-05 10:08:31 +0800 | [diff] [blame] | 201 | val = clamp_val(val, -120000, 220000); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 202 | mutex_lock(&data->update_lock); |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 203 | data->temp[t_hyst] = |
Axel Lin | 5b96308 | 2014-08-05 10:08:31 +0800 | [diff] [blame] | 204 | TEMP_TO_REG(TEMP_FROM_REG(data->temp[attr->index]) - val); |
Jean Delvare | 90f4102 | 2011-11-04 12:00:47 +0100 | [diff] [blame] | 205 | i2c_smbus_write_word_swapped(client, LM92_REG_TEMP_HYST, |
Axel Lin | 5b96308 | 2014-08-05 10:08:31 +0800 | [diff] [blame] | 206 | data->temp[t_hyst]); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 207 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | return count; |
| 209 | } |
| 210 | |
Julia Lawall | 3dba95d | 2016-12-22 13:04:54 +0100 | [diff] [blame] | 211 | static ssize_t alarms_show(struct device *dev, struct device_attribute *attr, |
Guenter Roeck | a318afd | 2012-01-14 21:04:18 -0800 | [diff] [blame] | 212 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | { |
| 214 | struct lm92_data *data = lm92_update_device(dev); |
Guenter Roeck | 0665a1d | 2018-09-16 07:45:21 -0700 | [diff] [blame] | 215 | |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 216 | return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->temp[t_input])); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 219 | static ssize_t alarm_show(struct device *dev, struct device_attribute *attr, |
Jean Delvare | 6cb59e9 | 2008-01-06 15:25:52 +0100 | [diff] [blame] | 220 | char *buf) |
| 221 | { |
| 222 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 223 | struct lm92_data *data = lm92_update_device(dev); |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 224 | return sprintf(buf, "%d\n", (data->temp[t_input] >> bitnr) & 1); |
Jean Delvare | 6cb59e9 | 2008-01-06 15:25:52 +0100 | [diff] [blame] | 225 | } |
| 226 | |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 227 | static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input); |
| 228 | static SENSOR_DEVICE_ATTR_RW(temp1_crit, temp, t_crit); |
| 229 | static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp_hyst, t_crit); |
| 230 | static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, t_min); |
Julia Lawall | 3dba95d | 2016-12-22 13:04:54 +0100 | [diff] [blame] | 231 | static DEVICE_ATTR_RO(temp1_min_hyst); |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 232 | static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, t_max); |
| 233 | static SENSOR_DEVICE_ATTR_RO(temp1_max_hyst, temp_hyst, t_max); |
Julia Lawall | 3dba95d | 2016-12-22 13:04:54 +0100 | [diff] [blame] | 234 | static DEVICE_ATTR_RO(alarms); |
Guenter Roeck | 185c993 | 2018-12-10 14:02:13 -0800 | [diff] [blame] | 235 | static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 2); |
| 236 | static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, 0); |
| 237 | static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* |
| 240 | * Detection and registration |
| 241 | */ |
| 242 | |
| 243 | static void lm92_init_client(struct i2c_client *client) |
| 244 | { |
| 245 | u8 config; |
| 246 | |
| 247 | /* Start the conversions if needed */ |
| 248 | config = i2c_smbus_read_byte_data(client, LM92_REG_CONFIG); |
| 249 | if (config & 0x01) |
| 250 | i2c_smbus_write_byte_data(client, LM92_REG_CONFIG, |
| 251 | config & 0xFE); |
| 252 | } |
| 253 | |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 254 | static struct attribute *lm92_attrs[] = { |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 255 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 256 | &sensor_dev_attr_temp1_crit.dev_attr.attr, |
| 257 | &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr, |
| 258 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 259 | &dev_attr_temp1_min_hyst.attr, |
Guenter Roeck | b8fe58e | 2014-04-12 13:07:08 -0700 | [diff] [blame] | 260 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 261 | &sensor_dev_attr_temp1_max_hyst.dev_attr.attr, |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 262 | &dev_attr_alarms.attr, |
Jean Delvare | 6cb59e9 | 2008-01-06 15:25:52 +0100 | [diff] [blame] | 263 | &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr, |
| 264 | &sensor_dev_attr_temp1_min_alarm.dev_attr.attr, |
| 265 | &sensor_dev_attr_temp1_max_alarm.dev_attr.attr, |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 266 | NULL |
| 267 | }; |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 268 | ATTRIBUTE_GROUPS(lm92); |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 269 | |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 270 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
Jean Delvare | 310ec79 | 2009-12-14 21:17:23 +0100 | [diff] [blame] | 271 | static int lm92_detect(struct i2c_client *new_client, |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 272 | struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 274 | struct i2c_adapter *adapter = new_client->adapter; |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 275 | u8 config; |
| 276 | u16 man_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
| 279 | | I2C_FUNC_SMBUS_WORD_DATA)) |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 280 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 282 | config = i2c_smbus_read_byte_data(new_client, LM92_REG_CONFIG); |
| 283 | man_id = i2c_smbus_read_word_data(new_client, LM92_REG_MAN_ID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 285 | if ((config & 0xe0) == 0x00 && man_id == 0x0180) |
| 286 | pr_info("lm92: Found National Semiconductor LM92 chip\n"); |
Jean Delvare | 52df644 | 2009-12-09 20:35:57 +0100 | [diff] [blame] | 287 | else |
| 288 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 290 | strlcpy(info->type, "lm92", I2C_NAME_SIZE); |
| 291 | |
| 292 | return 0; |
| 293 | } |
| 294 | |
| 295 | static int lm92_probe(struct i2c_client *new_client, |
| 296 | const struct i2c_device_id *id) |
| 297 | { |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 298 | struct device *hwmon_dev; |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 299 | struct lm92_data *data; |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 300 | |
Guenter Roeck | 705375c | 2012-06-02 09:58:11 -0700 | [diff] [blame] | 301 | data = devm_kzalloc(&new_client->dev, sizeof(struct lm92_data), |
| 302 | GFP_KERNEL); |
| 303 | if (!data) |
| 304 | return -ENOMEM; |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 305 | |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 306 | data->client = new_client; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 307 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* Initialize the chipset */ |
| 310 | lm92_init_client(new_client); |
| 311 | |
Guenter Roeck | 030004b | 2014-04-12 13:17:16 -0700 | [diff] [blame] | 312 | hwmon_dev = devm_hwmon_device_register_with_groups(&new_client->dev, |
| 313 | new_client->name, |
| 314 | data, lm92_groups); |
| 315 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | } |
| 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | /* |
| 319 | * Module and driver stuff |
| 320 | */ |
| 321 | |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 322 | static const struct i2c_device_id lm92_id[] = { |
Alvaro G. M | 10ecacd | 2018-03-22 15:37:44 +0100 | [diff] [blame] | 323 | { "lm92", lm92 }, |
| 324 | { "max6635", max6635 }, |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 325 | { } |
| 326 | }; |
| 327 | MODULE_DEVICE_TABLE(i2c, lm92_id); |
| 328 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 329 | static struct i2c_driver lm92_driver = { |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 330 | .class = I2C_CLASS_HWMON, |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 331 | .driver = { |
Laurent Riffard | cdaf793 | 2005-11-26 20:37:41 +0100 | [diff] [blame] | 332 | .name = "lm92", |
| 333 | }, |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 334 | .probe = lm92_probe, |
Jean Delvare | 910e8dc | 2008-07-16 19:30:15 +0200 | [diff] [blame] | 335 | .id_table = lm92_id, |
| 336 | .detect = lm92_detect, |
Jean Delvare | c3813d6 | 2009-12-14 21:17:25 +0100 | [diff] [blame] | 337 | .address_list = normal_i2c, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | }; |
| 339 | |
Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 340 | module_i2c_driver(lm92_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | |
Jean Delvare | 7c81c60f | 2014-01-29 20:40:08 +0100 | [diff] [blame] | 342 | MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | MODULE_DESCRIPTION("LM92/MAX6635 driver"); |
| 344 | MODULE_LICENSE("GPL"); |