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 | /* |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 3 | * lm77.c - Part of lm_sensors, Linux kernel modules for hardware |
| 4 | * monitoring |
| 5 | * |
| 6 | * Copyright (c) 2004 Andras BALI <drewie@freemail.hu> |
| 7 | * |
| 8 | * Heavily based on lm75.c by Frodo Looijaard <frodol@dds.nl>. The LM77 |
| 9 | * is a temperature sensor and thermal window comparator with 0.5 deg |
| 10 | * resolution made by National Semiconductor. Complete datasheet can be |
| 11 | * obtained at their site: |
| 12 | * http://www.national.com/pf/LM/LM77.html |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 13 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/module.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/jiffies.h> |
| 19 | #include <linux/i2c.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 20 | #include <linux/hwmon.h> |
Jean Delvare | 1f52af0 | 2008-01-03 23:35:33 +0100 | [diff] [blame] | 21 | #include <linux/hwmon-sysfs.h> |
Mark M. Hoffman | 943b083 | 2005-07-15 21:39:18 -0400 | [diff] [blame] | 22 | #include <linux/err.h> |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 23 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | /* Addresses to scan */ |
Mark M. Hoffman | 25e9c86 | 2008-02-17 22:28:03 -0500 | [diff] [blame] | 26 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, |
| 27 | I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | /* The LM77 registers */ |
| 30 | #define LM77_REG_TEMP 0x00 |
| 31 | #define LM77_REG_CONF 0x01 |
| 32 | #define LM77_REG_TEMP_HYST 0x02 |
| 33 | #define LM77_REG_TEMP_CRIT 0x03 |
| 34 | #define LM77_REG_TEMP_MIN 0x04 |
| 35 | #define LM77_REG_TEMP_MAX 0x05 |
| 36 | |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 37 | enum temp_index { |
| 38 | t_input = 0, |
| 39 | t_crit, |
| 40 | t_min, |
| 41 | t_max, |
| 42 | t_hyst, |
| 43 | t_num_temp |
| 44 | }; |
| 45 | |
| 46 | static const u8 temp_regs[t_num_temp] = { |
| 47 | [t_input] = LM77_REG_TEMP, |
| 48 | [t_min] = LM77_REG_TEMP_MIN, |
| 49 | [t_max] = LM77_REG_TEMP_MAX, |
| 50 | [t_crit] = LM77_REG_TEMP_CRIT, |
| 51 | [t_hyst] = LM77_REG_TEMP_HYST, |
| 52 | }; |
| 53 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | /* Each client has this additional data */ |
| 55 | struct lm77_data { |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 56 | struct i2c_client *client; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 57 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | char valid; |
| 59 | unsigned long last_updated; /* In jiffies */ |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 60 | int temp[t_num_temp]; /* index using temp_index */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | u8 alarms; |
| 62 | }; |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | /* straight from the datasheet */ |
| 65 | #define LM77_TEMP_MIN (-55000) |
| 66 | #define LM77_TEMP_MAX 125000 |
| 67 | |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 68 | /* |
| 69 | * In the temperature registers, the low 3 bits are not part of the |
| 70 | * temperature values; they are the status bits. |
| 71 | */ |
Jean Delvare | 413b645 | 2006-01-09 22:43:08 +0100 | [diff] [blame] | 72 | static inline s16 LM77_TEMP_TO_REG(int temp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | { |
Axel Lin | 99765db | 2014-07-31 22:58:04 +0800 | [diff] [blame] | 74 | return (temp / 500) * 8; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Jean Delvare | 413b645 | 2006-01-09 22:43:08 +0100 | [diff] [blame] | 77 | static inline int LM77_TEMP_FROM_REG(s16 reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | { |
Jean Delvare | 413b645 | 2006-01-09 22:43:08 +0100 | [diff] [blame] | 79 | return (reg / 8) * 500; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 82 | /* |
| 83 | * All registers are word-sized, except for the configuration register. |
| 84 | * The LM77 uses the high-byte first convention. |
| 85 | */ |
| 86 | static u16 lm77_read_value(struct i2c_client *client, u8 reg) |
| 87 | { |
| 88 | if (reg == LM77_REG_CONF) |
| 89 | return i2c_smbus_read_byte_data(client, reg); |
| 90 | else |
| 91 | return i2c_smbus_read_word_swapped(client, reg); |
| 92 | } |
| 93 | |
| 94 | static int lm77_write_value(struct i2c_client *client, u8 reg, u16 value) |
| 95 | { |
| 96 | if (reg == LM77_REG_CONF) |
| 97 | return i2c_smbus_write_byte_data(client, reg, value); |
| 98 | else |
| 99 | return i2c_smbus_write_word_swapped(client, reg, value); |
| 100 | } |
| 101 | |
| 102 | static struct lm77_data *lm77_update_device(struct device *dev) |
| 103 | { |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 104 | struct lm77_data *data = dev_get_drvdata(dev); |
| 105 | struct i2c_client *client = data->client; |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 106 | int i; |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 107 | |
| 108 | mutex_lock(&data->update_lock); |
| 109 | |
| 110 | if (time_after(jiffies, data->last_updated + HZ + HZ / 2) |
| 111 | || !data->valid) { |
| 112 | dev_dbg(&client->dev, "Starting lm77 update\n"); |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 113 | for (i = 0; i < t_num_temp; i++) { |
| 114 | data->temp[i] = |
| 115 | LM77_TEMP_FROM_REG(lm77_read_value(client, |
| 116 | temp_regs[i])); |
| 117 | } |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 118 | data->alarms = |
| 119 | lm77_read_value(client, LM77_REG_TEMP) & 0x0007; |
| 120 | data->last_updated = jiffies; |
| 121 | data->valid = 1; |
| 122 | } |
| 123 | |
| 124 | mutex_unlock(&data->update_lock); |
| 125 | |
| 126 | return data; |
| 127 | } |
| 128 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | /* sysfs stuff */ |
| 130 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 131 | static ssize_t temp_show(struct device *dev, struct device_attribute *devattr, |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 132 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 133 | { |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 134 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | struct lm77_data *data = lm77_update_device(dev); |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 136 | |
| 137 | return sprintf(buf, "%d\n", data->temp[attr->index]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | } |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 139 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 140 | static ssize_t temp_hyst_show(struct device *dev, |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 141 | struct device_attribute *devattr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | { |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 143 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | struct lm77_data *data = lm77_update_device(dev); |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 145 | int nr = attr->index; |
| 146 | int temp; |
| 147 | |
| 148 | temp = nr == t_min ? data->temp[nr] + data->temp[t_hyst] : |
| 149 | data->temp[nr] - data->temp[t_hyst]; |
| 150 | |
| 151 | return sprintf(buf, "%d\n", temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 153 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 154 | static ssize_t temp_store(struct device *dev, |
| 155 | struct device_attribute *devattr, const char *buf, |
| 156 | size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 158 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 159 | struct lm77_data *data = dev_get_drvdata(dev); |
| 160 | struct i2c_client *client = data->client; |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 161 | int nr = attr->index; |
| 162 | long val; |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 163 | int err; |
| 164 | |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 165 | err = kstrtol(buf, 10, &val); |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 166 | if (err) |
| 167 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Axel Lin | 99765db | 2014-07-31 22:58:04 +0800 | [diff] [blame] | 169 | val = clamp_val(val, LM77_TEMP_MIN, LM77_TEMP_MAX); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 170 | mutex_lock(&data->update_lock); |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 171 | data->temp[nr] = val; |
| 172 | lm77_write_value(client, temp_regs[nr], LM77_TEMP_TO_REG(val)); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 173 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | return count; |
| 175 | } |
| 176 | |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 177 | /* |
| 178 | * hysteresis is stored as a relative value on the chip, so it has to be |
| 179 | * converted first. |
| 180 | */ |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 181 | static ssize_t temp_hyst_store(struct device *dev, |
| 182 | struct device_attribute *devattr, |
| 183 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | { |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 185 | struct lm77_data *data = dev_get_drvdata(dev); |
| 186 | struct i2c_client *client = data->client; |
Axel Lin | 99765db | 2014-07-31 22:58:04 +0800 | [diff] [blame] | 187 | long val; |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 188 | int err; |
| 189 | |
Axel Lin | 99765db | 2014-07-31 22:58:04 +0800 | [diff] [blame] | 190 | err = kstrtol(buf, 10, &val); |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 191 | if (err) |
| 192 | return err; |
| 193 | |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 194 | mutex_lock(&data->update_lock); |
Axel Lin | 99765db | 2014-07-31 22:58:04 +0800 | [diff] [blame] | 195 | val = clamp_val(data->temp[t_crit] - val, LM77_TEMP_MIN, LM77_TEMP_MAX); |
| 196 | data->temp[t_hyst] = val; |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 197 | lm77_write_value(client, LM77_REG_TEMP_HYST, |
| 198 | LM77_TEMP_TO_REG(data->temp[t_hyst])); |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 199 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | return count; |
| 201 | } |
| 202 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 203 | static ssize_t alarm_show(struct device *dev, struct device_attribute *attr, |
Jean Delvare | 1f52af0 | 2008-01-03 23:35:33 +0100 | [diff] [blame] | 204 | char *buf) |
| 205 | { |
| 206 | int bitnr = to_sensor_dev_attr(attr)->index; |
| 207 | struct lm77_data *data = lm77_update_device(dev); |
| 208 | return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1); |
| 209 | } |
| 210 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 211 | static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input); |
| 212 | static SENSOR_DEVICE_ATTR_RW(temp1_crit, temp, t_crit); |
| 213 | static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, t_min); |
| 214 | static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, t_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 216 | static SENSOR_DEVICE_ATTR_RW(temp1_crit_hyst, temp_hyst, t_crit); |
| 217 | static SENSOR_DEVICE_ATTR_RO(temp1_min_hyst, temp_hyst, t_min); |
| 218 | static SENSOR_DEVICE_ATTR_RO(temp1_max_hyst, temp_hyst, t_max); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
Guenter Roeck | 97b539d | 2018-12-10 14:02:11 -0800 | [diff] [blame] | 220 | static SENSOR_DEVICE_ATTR_RO(temp1_crit_alarm, alarm, 2); |
| 221 | static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, 0); |
| 222 | static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 224 | static struct attribute *lm77_attrs[] = { |
Guenter Roeck | 48dbd6f | 2014-04-12 09:17:37 -0700 | [diff] [blame] | 225 | &sensor_dev_attr_temp1_input.dev_attr.attr, |
| 226 | &sensor_dev_attr_temp1_crit.dev_attr.attr, |
| 227 | &sensor_dev_attr_temp1_min.dev_attr.attr, |
| 228 | &sensor_dev_attr_temp1_max.dev_attr.attr, |
| 229 | &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr, |
| 230 | &sensor_dev_attr_temp1_min_hyst.dev_attr.attr, |
| 231 | &sensor_dev_attr_temp1_max_hyst.dev_attr.attr, |
Jean Delvare | 1f52af0 | 2008-01-03 23:35:33 +0100 | [diff] [blame] | 232 | &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr, |
| 233 | &sensor_dev_attr_temp1_min_alarm.dev_attr.attr, |
| 234 | &sensor_dev_attr_temp1_max_alarm.dev_attr.attr, |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 235 | NULL |
| 236 | }; |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 237 | ATTRIBUTE_GROUPS(lm77); |
Mark M. Hoffman | 0501a38 | 2006-09-24 21:14:35 +0200 | [diff] [blame] | 238 | |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 239 | /* Return 0 if detection is successful, -ENODEV otherwise */ |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 240 | static int lm77_detect(struct i2c_client *client, struct i2c_board_info *info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 242 | struct i2c_adapter *adapter = client->adapter; |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 243 | int i, cur, conf, hyst, crit, min, max; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
| 245 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA | |
| 246 | I2C_FUNC_SMBUS_WORD_DATA)) |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 247 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
Guenter Roeck | 02fe2fd | 2012-01-14 13:42:20 -0800 | [diff] [blame] | 249 | /* |
| 250 | * Here comes the remaining detection. Since the LM77 has no |
| 251 | * register dedicated to identification, we have to rely on the |
| 252 | * following tricks: |
| 253 | * |
| 254 | * 1. the high 4 bits represent the sign and thus they should |
| 255 | * always be the same |
| 256 | * 2. the high 3 bits are unused in the configuration register |
| 257 | * 3. addresses 0x06 and 0x07 return the last read value |
| 258 | * 4. registers cycling over 8-address boundaries |
| 259 | * |
| 260 | * Word-sized registers are high-byte first. |
| 261 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 263 | /* addresses cycling */ |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 264 | cur = i2c_smbus_read_word_data(client, 0); |
| 265 | conf = i2c_smbus_read_byte_data(client, 1); |
| 266 | hyst = i2c_smbus_read_word_data(client, 2); |
| 267 | crit = i2c_smbus_read_word_data(client, 3); |
| 268 | min = i2c_smbus_read_word_data(client, 4); |
| 269 | max = i2c_smbus_read_word_data(client, 5); |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 270 | for (i = 8; i <= 0xff; i += 8) { |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 271 | if (i2c_smbus_read_byte_data(client, i + 1) != conf |
| 272 | || i2c_smbus_read_word_data(client, i + 2) != hyst |
| 273 | || i2c_smbus_read_word_data(client, i + 3) != crit |
| 274 | || i2c_smbus_read_word_data(client, i + 4) != min |
| 275 | || i2c_smbus_read_word_data(client, i + 5) != max) |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 276 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | } |
| 278 | |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 279 | /* sign bits */ |
| 280 | if (((cur & 0x00f0) != 0xf0 && (cur & 0x00f0) != 0x0) |
| 281 | || ((hyst & 0x00f0) != 0xf0 && (hyst & 0x00f0) != 0x0) |
| 282 | || ((crit & 0x00f0) != 0xf0 && (crit & 0x00f0) != 0x0) |
| 283 | || ((min & 0x00f0) != 0xf0 && (min & 0x00f0) != 0x0) |
| 284 | || ((max & 0x00f0) != 0xf0 && (max & 0x00f0) != 0x0)) |
| 285 | return -ENODEV; |
| 286 | |
| 287 | /* unused bits */ |
| 288 | if (conf & 0xe0) |
| 289 | return -ENODEV; |
| 290 | |
| 291 | /* 0x06 and 0x07 return the last read value */ |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 292 | cur = i2c_smbus_read_word_data(client, 0); |
| 293 | if (i2c_smbus_read_word_data(client, 6) != cur |
| 294 | || i2c_smbus_read_word_data(client, 7) != cur) |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 295 | return -ENODEV; |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 296 | hyst = i2c_smbus_read_word_data(client, 2); |
| 297 | if (i2c_smbus_read_word_data(client, 6) != hyst |
| 298 | || i2c_smbus_read_word_data(client, 7) != hyst) |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 299 | return -ENODEV; |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 300 | min = i2c_smbus_read_word_data(client, 4); |
| 301 | if (i2c_smbus_read_word_data(client, 6) != min |
| 302 | || i2c_smbus_read_word_data(client, 7) != min) |
Jean Delvare | 747d9be | 2009-12-09 20:35:52 +0100 | [diff] [blame] | 303 | return -ENODEV; |
| 304 | |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 305 | strlcpy(info->type, "lm77", I2C_NAME_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 307 | return 0; |
| 308 | } |
| 309 | |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 310 | static void lm77_init_client(struct i2c_client *client) |
| 311 | { |
| 312 | /* Initialize the LM77 chip - turn off shutdown mode */ |
| 313 | int conf = lm77_read_value(client, LM77_REG_CONF); |
| 314 | if (conf & 1) |
| 315 | lm77_write_value(client, LM77_REG_CONF, conf & 0xfe); |
| 316 | } |
| 317 | |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 318 | static int lm77_probe(struct i2c_client *client, const struct i2c_device_id *id) |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 319 | { |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 320 | struct device *dev = &client->dev; |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 321 | struct device *hwmon_dev; |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 322 | struct lm77_data *data; |
Jean Delvare | a189dd6 | 2008-07-16 19:30:13 +0200 | [diff] [blame] | 323 | |
Guenter Roeck | 52714c0 | 2012-06-16 18:24:02 -0700 | [diff] [blame] | 324 | data = devm_kzalloc(dev, sizeof(struct lm77_data), GFP_KERNEL); |
| 325 | if (!data) |
| 326 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 328 | data->client = client; |
Ingo Molnar | 9a61bf6 | 2006-01-18 23:19:26 +0100 | [diff] [blame] | 329 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | /* Initialize the LM77 chip */ |
Guenter Roeck | efd2d11 | 2012-06-02 09:58:09 -0700 | [diff] [blame] | 332 | lm77_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | |
Guenter Roeck | 5975dfb | 2014-04-12 09:25:25 -0700 | [diff] [blame] | 334 | hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name, |
| 335 | data, lm77_groups); |
| 336 | return PTR_ERR_OR_ZERO(hwmon_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | } |
| 338 | |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 339 | static const struct i2c_device_id lm77_id[] = { |
| 340 | { "lm77", 0 }, |
| 341 | { } |
| 342 | }; |
| 343 | MODULE_DEVICE_TABLE(i2c, lm77_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 345 | /* This is the driver that will be inserted */ |
| 346 | static struct i2c_driver lm77_driver = { |
| 347 | .class = I2C_CLASS_HWMON, |
| 348 | .driver = { |
| 349 | .name = "lm77", |
| 350 | }, |
| 351 | .probe = lm77_probe, |
Guenter Roeck | 9f9edcd | 2014-04-12 08:45:20 -0700 | [diff] [blame] | 352 | .id_table = lm77_id, |
| 353 | .detect = lm77_detect, |
| 354 | .address_list = normal_i2c, |
| 355 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | |
Axel Lin | f0967ee | 2012-01-20 15:38:18 +0800 | [diff] [blame] | 357 | module_i2c_driver(lm77_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | MODULE_AUTHOR("Andras BALI <drewie@freemail.hu>"); |
| 360 | MODULE_DESCRIPTION("LM77 driver"); |
| 361 | MODULE_LICENSE("GPL"); |