Loading...
1/*
2 ds1621.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Christian W. Zuckschwerdt <zany@triq.net> 2000-11-23
5 based on lm75.c by Frodo Looijaard <frodol@dds.nl>
6 Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
7 the help of Jean Delvare <khali@linux-fr.org>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
29#include <linux/hwmon.h>
30#include <linux/hwmon-sysfs.h>
31#include <linux/err.h>
32#include <linux/mutex.h>
33#include <linux/sysfs.h>
34#include "lm75.h"
35
36/* Addresses to scan */
37static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c,
38 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
39
40/* Insmod parameters */
41static int polarity = -1;
42module_param(polarity, int, 0);
43MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low");
44
45/* Many DS1621 constants specified below */
46/* Config register used for detection */
47/* 7 6 5 4 3 2 1 0 */
48/* |Done|THF |TLF |NVB | X | X |POL |1SHOT| */
49#define DS1621_REG_CONFIG_NVB 0x10
50#define DS1621_REG_CONFIG_POLARITY 0x02
51#define DS1621_REG_CONFIG_1SHOT 0x01
52#define DS1621_REG_CONFIG_DONE 0x80
53
54/* The DS1621 registers */
55static const u8 DS1621_REG_TEMP[3] = {
56 0xAA, /* input, word, RO */
57 0xA2, /* min, word, RW */
58 0xA1, /* max, word, RW */
59};
60#define DS1621_REG_CONF 0xAC /* byte, RW */
61#define DS1621_COM_START 0xEE /* no data */
62#define DS1621_COM_STOP 0x22 /* no data */
63
64/* The DS1621 configuration register */
65#define DS1621_ALARM_TEMP_HIGH 0x40
66#define DS1621_ALARM_TEMP_LOW 0x20
67
68/* Conversions */
69#define ALARMS_FROM_REG(val) ((val) & \
70 (DS1621_ALARM_TEMP_HIGH | DS1621_ALARM_TEMP_LOW))
71
72/* Each client has this additional data */
73struct ds1621_data {
74 struct device *hwmon_dev;
75 struct mutex update_lock;
76 char valid; /* !=0 if following fields are valid */
77 unsigned long last_updated; /* In jiffies */
78
79 u16 temp[3]; /* Register values, word */
80 u8 conf; /* Register encoding, combined */
81};
82
83/* Temperature registers are word-sized.
84 DS1621 uses a high-byte first convention, which is exactly opposite to
85 the SMBus standard. */
86static int ds1621_read_temp(struct i2c_client *client, u8 reg)
87{
88 int ret;
89
90 ret = i2c_smbus_read_word_data(client, reg);
91 if (ret < 0)
92 return ret;
93 return swab16(ret);
94}
95
96static int ds1621_write_temp(struct i2c_client *client, u8 reg, u16 value)
97{
98 return i2c_smbus_write_word_data(client, reg, swab16(value));
99}
100
101static void ds1621_init_client(struct i2c_client *client)
102{
103 u8 conf, new_conf;
104
105 new_conf = conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
106 /* switch to continuous conversion mode */
107 new_conf &= ~DS1621_REG_CONFIG_1SHOT;
108
109 /* setup output polarity */
110 if (polarity == 0)
111 new_conf &= ~DS1621_REG_CONFIG_POLARITY;
112 else if (polarity == 1)
113 new_conf |= DS1621_REG_CONFIG_POLARITY;
114
115 if (conf != new_conf)
116 i2c_smbus_write_byte_data(client, DS1621_REG_CONF, new_conf);
117
118 /* start conversion */
119 i2c_smbus_write_byte(client, DS1621_COM_START);
120}
121
122static struct ds1621_data *ds1621_update_client(struct device *dev)
123{
124 struct i2c_client *client = to_i2c_client(dev);
125 struct ds1621_data *data = i2c_get_clientdata(client);
126 u8 new_conf;
127
128 mutex_lock(&data->update_lock);
129
130 if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
131 || !data->valid) {
132 int i;
133
134 dev_dbg(&client->dev, "Starting ds1621 update\n");
135
136 data->conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
137
138 for (i = 0; i < ARRAY_SIZE(data->temp); i++)
139 data->temp[i] = ds1621_read_temp(client,
140 DS1621_REG_TEMP[i]);
141
142 /* reset alarms if necessary */
143 new_conf = data->conf;
144 if (data->temp[0] > data->temp[1]) /* input > min */
145 new_conf &= ~DS1621_ALARM_TEMP_LOW;
146 if (data->temp[0] < data->temp[2]) /* input < max */
147 new_conf &= ~DS1621_ALARM_TEMP_HIGH;
148 if (data->conf != new_conf)
149 i2c_smbus_write_byte_data(client, DS1621_REG_CONF,
150 new_conf);
151
152 data->last_updated = jiffies;
153 data->valid = 1;
154 }
155
156 mutex_unlock(&data->update_lock);
157
158 return data;
159}
160
161static ssize_t show_temp(struct device *dev, struct device_attribute *da,
162 char *buf)
163{
164 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
165 struct ds1621_data *data = ds1621_update_client(dev);
166 return sprintf(buf, "%d\n",
167 LM75_TEMP_FROM_REG(data->temp[attr->index]));
168}
169
170static ssize_t set_temp(struct device *dev, struct device_attribute *da,
171 const char *buf, size_t count)
172{
173 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
174 struct i2c_client *client = to_i2c_client(dev);
175 struct ds1621_data *data = i2c_get_clientdata(client);
176 u16 val = LM75_TEMP_TO_REG(simple_strtol(buf, NULL, 10));
177
178 mutex_lock(&data->update_lock);
179 data->temp[attr->index] = val;
180 ds1621_write_temp(client, DS1621_REG_TEMP[attr->index],
181 data->temp[attr->index]);
182 mutex_unlock(&data->update_lock);
183 return count;
184}
185
186static ssize_t show_alarms(struct device *dev, struct device_attribute *da,
187 char *buf)
188{
189 struct ds1621_data *data = ds1621_update_client(dev);
190 return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->conf));
191}
192
193static ssize_t show_alarm(struct device *dev, struct device_attribute *da,
194 char *buf)
195{
196 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
197 struct ds1621_data *data = ds1621_update_client(dev);
198 return sprintf(buf, "%d\n", !!(data->conf & attr->index));
199}
200
201static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
202static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0);
203static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp, set_temp, 1);
204static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp, set_temp, 2);
205static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL,
206 DS1621_ALARM_TEMP_LOW);
207static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL,
208 DS1621_ALARM_TEMP_HIGH);
209
210static struct attribute *ds1621_attributes[] = {
211 &sensor_dev_attr_temp1_input.dev_attr.attr,
212 &sensor_dev_attr_temp1_min.dev_attr.attr,
213 &sensor_dev_attr_temp1_max.dev_attr.attr,
214 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
215 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
216 &dev_attr_alarms.attr,
217 NULL
218};
219
220static const struct attribute_group ds1621_group = {
221 .attrs = ds1621_attributes,
222};
223
224
225/* Return 0 if detection is successful, -ENODEV otherwise */
226static int ds1621_detect(struct i2c_client *client,
227 struct i2c_board_info *info)
228{
229 struct i2c_adapter *adapter = client->adapter;
230 int conf, temp;
231 int i;
232
233 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA
234 | I2C_FUNC_SMBUS_WORD_DATA
235 | I2C_FUNC_SMBUS_WRITE_BYTE))
236 return -ENODEV;
237
238 /* Now, we do the remaining detection. It is lousy. */
239 /* The NVB bit should be low if no EEPROM write has been requested
240 during the latest 10ms, which is highly improbable in our case. */
241 conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
242 if (conf < 0 || conf & DS1621_REG_CONFIG_NVB)
243 return -ENODEV;
244 /* The 7 lowest bits of a temperature should always be 0. */
245 for (i = 0; i < ARRAY_SIZE(DS1621_REG_TEMP); i++) {
246 temp = i2c_smbus_read_word_data(client, DS1621_REG_TEMP[i]);
247 if (temp < 0 || (temp & 0x7f00))
248 return -ENODEV;
249 }
250
251 strlcpy(info->type, "ds1621", I2C_NAME_SIZE);
252
253 return 0;
254}
255
256static int ds1621_probe(struct i2c_client *client,
257 const struct i2c_device_id *id)
258{
259 struct ds1621_data *data;
260 int err;
261
262 data = kzalloc(sizeof(struct ds1621_data), GFP_KERNEL);
263 if (!data) {
264 err = -ENOMEM;
265 goto exit;
266 }
267
268 i2c_set_clientdata(client, data);
269 mutex_init(&data->update_lock);
270
271 /* Initialize the DS1621 chip */
272 ds1621_init_client(client);
273
274 /* Register sysfs hooks */
275 if ((err = sysfs_create_group(&client->dev.kobj, &ds1621_group)))
276 goto exit_free;
277
278 data->hwmon_dev = hwmon_device_register(&client->dev);
279 if (IS_ERR(data->hwmon_dev)) {
280 err = PTR_ERR(data->hwmon_dev);
281 goto exit_remove_files;
282 }
283
284 return 0;
285
286 exit_remove_files:
287 sysfs_remove_group(&client->dev.kobj, &ds1621_group);
288 exit_free:
289 kfree(data);
290 exit:
291 return err;
292}
293
294static int ds1621_remove(struct i2c_client *client)
295{
296 struct ds1621_data *data = i2c_get_clientdata(client);
297
298 hwmon_device_unregister(data->hwmon_dev);
299 sysfs_remove_group(&client->dev.kobj, &ds1621_group);
300
301 kfree(data);
302
303 return 0;
304}
305
306static const struct i2c_device_id ds1621_id[] = {
307 { "ds1621", 0 },
308 { "ds1625", 0 },
309 { }
310};
311MODULE_DEVICE_TABLE(i2c, ds1621_id);
312
313/* This is the driver that will be inserted */
314static struct i2c_driver ds1621_driver = {
315 .class = I2C_CLASS_HWMON,
316 .driver = {
317 .name = "ds1621",
318 },
319 .probe = ds1621_probe,
320 .remove = ds1621_remove,
321 .id_table = ds1621_id,
322 .detect = ds1621_detect,
323 .address_list = normal_i2c,
324};
325
326static int __init ds1621_init(void)
327{
328 return i2c_add_driver(&ds1621_driver);
329}
330
331static void __exit ds1621_exit(void)
332{
333 i2c_del_driver(&ds1621_driver);
334}
335
336
337MODULE_AUTHOR("Christian W. Zuckschwerdt <zany@triq.net>");
338MODULE_DESCRIPTION("DS1621 driver");
339MODULE_LICENSE("GPL");
340
341module_init(ds1621_init);
342module_exit(ds1621_exit);
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * ds1621.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring
5 * Christian W. Zuckschwerdt <zany@triq.net> 2000-11-23
6 * based on lm75.c by Frodo Looijaard <frodol@dds.nl>
7 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
8 * the help of Jean Delvare <jdelvare@suse.de>
9 *
10 * The DS1621 device is a digital temperature/thermometer with 9-bit
11 * resolution, a thermal alarm output (Tout), and user-defined minimum
12 * and maximum temperature thresholds (TH and TL).
13 *
14 * The DS1625, DS1631, DS1721, and DS1731 are pin compatible with the DS1621
15 * and similar in operation, with slight variations as noted in the device
16 * datasheets (please refer to www.maximintegrated.com for specific
17 * device information).
18 *
19 * Since the DS1621 was the first chipset supported by this driver,
20 * most comments will refer to this chipset, but are actually general
21 * and concern all supported chipsets, unless mentioned otherwise.
22 */
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
29#include <linux/hwmon.h>
30#include <linux/hwmon-sysfs.h>
31#include <linux/err.h>
32#include <linux/mutex.h>
33#include <linux/sysfs.h>
34#include <linux/kernel.h>
35
36/* Supported devices */
37enum chips { ds1621, ds1625, ds1631, ds1721, ds1731 };
38
39/* Insmod parameters */
40static int polarity = -1;
41module_param(polarity, int, 0);
42MODULE_PARM_DESC(polarity, "Output's polarity: 0 = active high, 1 = active low");
43
44/*
45 * The Configuration/Status register
46 *
47 * - DS1621:
48 * 7 6 5 4 3 2 1 0
49 * |Done|THF |TLF |NVB | X | X |POL |1SHOT|
50 *
51 * - DS1625:
52 * 7 6 5 4 3 2 1 0
53 * |Done|THF |TLF |NVB | 1 | 0 |POL |1SHOT|
54 *
55 * - DS1631, DS1731:
56 * 7 6 5 4 3 2 1 0
57 * |Done|THF |TLF |NVB | R1 | R0 |POL |1SHOT|
58 *
59 * - DS1721:
60 * 7 6 5 4 3 2 1 0
61 * |Done| X | X | U | R1 | R0 |POL |1SHOT|
62 *
63 * Where:
64 * - 'X' is Reserved
65 * - 'U' is Undefined
66 */
67#define DS1621_REG_CONFIG_NVB 0x10
68#define DS1621_REG_CONFIG_RESOL 0x0C
69#define DS1621_REG_CONFIG_POLARITY 0x02
70#define DS1621_REG_CONFIG_1SHOT 0x01
71#define DS1621_REG_CONFIG_DONE 0x80
72
73#define DS1621_REG_CONFIG_RESOL_SHIFT 2
74
75/* ds1721 conversion rates: {C/LSB, time(ms), resolution bit setting} */
76static const unsigned short ds1721_convrates[] = {
77 94, /* 9-bits (0.5, 93.75, RES[0..1] = 0 */
78 188, /* 10-bits (0.25, 187.5, RES[0..1] = 1 */
79 375, /* 11-bits (0.125, 375, RES[0..1] = 2 */
80 750, /* 12-bits (0.0625, 750, RES[0..1] = 3 */
81};
82
83#define DS1621_CONVERSION_MAX 750
84#define DS1625_CONVERSION_MAX 500
85
86#define DS1621_TEMP_MAX 125000
87#define DS1621_TEMP_MIN (-55000)
88
89/* The DS1621 temperature registers */
90static const u8 DS1621_REG_TEMP[3] = {
91 0xAA, /* input, word, RO */
92 0xA2, /* min, word, RW */
93 0xA1, /* max, word, RW */
94};
95#define DS1621_REG_CONF 0xAC /* byte, RW */
96#define DS1621_COM_START 0xEE /* no data */
97#define DS1721_COM_START 0x51 /* no data */
98#define DS1621_COM_STOP 0x22 /* no data */
99
100/* The DS1621 configuration register */
101#define DS1621_ALARM_TEMP_HIGH 0x40
102#define DS1621_ALARM_TEMP_LOW 0x20
103
104/* Conversions */
105#define ALARMS_FROM_REG(val) ((val) & \
106 (DS1621_ALARM_TEMP_HIGH | DS1621_ALARM_TEMP_LOW))
107
108/* Each client has this additional data */
109struct ds1621_data {
110 struct i2c_client *client;
111 struct mutex update_lock;
112 bool valid; /* true if following fields are valid */
113 unsigned long last_updated; /* In jiffies */
114 enum chips kind; /* device type */
115
116 u16 temp[3]; /* Register values, word */
117 u8 conf; /* Register encoding, combined */
118 u8 zbits; /* Resolution encoded as number of
119 * zero bits */
120 u16 update_interval; /* Conversion rate in milliseconds */
121};
122
123static inline int DS1621_TEMP_FROM_REG(u16 reg)
124{
125 return DIV_ROUND_CLOSEST(((s16)reg / 16) * 625, 10);
126}
127
128/*
129 * TEMP: 0.001C/bit (-55C to +125C)
130 * REG:
131 * - 1621, 1625: 0.5C/bit, 7 zero-bits
132 * - 1631, 1721, 1731: 0.0625C/bit, 4 zero-bits
133 */
134static inline u16 DS1621_TEMP_TO_REG(long temp, u8 zbits)
135{
136 temp = clamp_val(temp, DS1621_TEMP_MIN, DS1621_TEMP_MAX);
137 temp = DIV_ROUND_CLOSEST(temp * (1 << (8 - zbits)), 1000) << zbits;
138 return temp;
139}
140
141static void ds1621_init_client(struct ds1621_data *data,
142 struct i2c_client *client)
143{
144 u8 conf, new_conf, sreg, resol;
145
146 new_conf = conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
147 /* switch to continuous conversion mode */
148 new_conf &= ~DS1621_REG_CONFIG_1SHOT;
149
150 /* setup output polarity */
151 if (polarity == 0)
152 new_conf &= ~DS1621_REG_CONFIG_POLARITY;
153 else if (polarity == 1)
154 new_conf |= DS1621_REG_CONFIG_POLARITY;
155
156 if (conf != new_conf)
157 i2c_smbus_write_byte_data(client, DS1621_REG_CONF, new_conf);
158
159 switch (data->kind) {
160 case ds1625:
161 data->update_interval = DS1625_CONVERSION_MAX;
162 data->zbits = 7;
163 sreg = DS1621_COM_START;
164 break;
165 case ds1631:
166 case ds1721:
167 case ds1731:
168 resol = (new_conf & DS1621_REG_CONFIG_RESOL) >>
169 DS1621_REG_CONFIG_RESOL_SHIFT;
170 data->update_interval = ds1721_convrates[resol];
171 data->zbits = 7 - resol;
172 sreg = DS1721_COM_START;
173 break;
174 default:
175 data->update_interval = DS1621_CONVERSION_MAX;
176 data->zbits = 7;
177 sreg = DS1621_COM_START;
178 break;
179 }
180
181 /* start conversion */
182 i2c_smbus_write_byte(client, sreg);
183}
184
185static struct ds1621_data *ds1621_update_client(struct device *dev)
186{
187 struct ds1621_data *data = dev_get_drvdata(dev);
188 struct i2c_client *client = data->client;
189 u8 new_conf;
190
191 mutex_lock(&data->update_lock);
192
193 if (time_after(jiffies, data->last_updated + data->update_interval) ||
194 !data->valid) {
195 int i;
196
197 dev_dbg(&client->dev, "Starting ds1621 update\n");
198
199 data->conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
200
201 for (i = 0; i < ARRAY_SIZE(data->temp); i++)
202 data->temp[i] = i2c_smbus_read_word_swapped(client,
203 DS1621_REG_TEMP[i]);
204
205 /* reset alarms if necessary */
206 new_conf = data->conf;
207 if (data->temp[0] > data->temp[1]) /* input > min */
208 new_conf &= ~DS1621_ALARM_TEMP_LOW;
209 if (data->temp[0] < data->temp[2]) /* input < max */
210 new_conf &= ~DS1621_ALARM_TEMP_HIGH;
211 if (data->conf != new_conf)
212 i2c_smbus_write_byte_data(client, DS1621_REG_CONF,
213 new_conf);
214
215 data->last_updated = jiffies;
216 data->valid = true;
217 }
218
219 mutex_unlock(&data->update_lock);
220
221 return data;
222}
223
224static ssize_t temp_show(struct device *dev, struct device_attribute *da,
225 char *buf)
226{
227 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
228 struct ds1621_data *data = ds1621_update_client(dev);
229 return sprintf(buf, "%d\n",
230 DS1621_TEMP_FROM_REG(data->temp[attr->index]));
231}
232
233static ssize_t temp_store(struct device *dev, struct device_attribute *da,
234 const char *buf, size_t count)
235{
236 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
237 struct ds1621_data *data = dev_get_drvdata(dev);
238 long val;
239 int err;
240
241 err = kstrtol(buf, 10, &val);
242 if (err)
243 return err;
244
245 mutex_lock(&data->update_lock);
246 data->temp[attr->index] = DS1621_TEMP_TO_REG(val, data->zbits);
247 i2c_smbus_write_word_swapped(data->client, DS1621_REG_TEMP[attr->index],
248 data->temp[attr->index]);
249 mutex_unlock(&data->update_lock);
250 return count;
251}
252
253static ssize_t alarms_show(struct device *dev, struct device_attribute *da,
254 char *buf)
255{
256 struct ds1621_data *data = ds1621_update_client(dev);
257 return sprintf(buf, "%d\n", ALARMS_FROM_REG(data->conf));
258}
259
260static ssize_t alarm_show(struct device *dev, struct device_attribute *da,
261 char *buf)
262{
263 struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
264 struct ds1621_data *data = ds1621_update_client(dev);
265 return sprintf(buf, "%d\n", !!(data->conf & attr->index));
266}
267
268static ssize_t update_interval_show(struct device *dev,
269 struct device_attribute *da, char *buf)
270{
271 struct ds1621_data *data = dev_get_drvdata(dev);
272 return sysfs_emit(buf, "%hu\n", data->update_interval);
273}
274
275static ssize_t update_interval_store(struct device *dev,
276 struct device_attribute *da,
277 const char *buf, size_t count)
278{
279 struct ds1621_data *data = dev_get_drvdata(dev);
280 struct i2c_client *client = data->client;
281 unsigned long convrate;
282 s32 err;
283 int resol = 0;
284
285 err = kstrtoul(buf, 10, &convrate);
286 if (err)
287 return err;
288
289 /* Convert rate into resolution bits */
290 while (resol < (ARRAY_SIZE(ds1721_convrates) - 1) &&
291 convrate > ds1721_convrates[resol])
292 resol++;
293
294 mutex_lock(&data->update_lock);
295 data->conf = i2c_smbus_read_byte_data(client, DS1621_REG_CONF);
296 data->conf &= ~DS1621_REG_CONFIG_RESOL;
297 data->conf |= (resol << DS1621_REG_CONFIG_RESOL_SHIFT);
298 i2c_smbus_write_byte_data(client, DS1621_REG_CONF, data->conf);
299 data->update_interval = ds1721_convrates[resol];
300 data->zbits = 7 - resol;
301 mutex_unlock(&data->update_lock);
302
303 return count;
304}
305
306static DEVICE_ATTR_RO(alarms);
307static DEVICE_ATTR_RW(update_interval);
308
309static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, 0);
310static SENSOR_DEVICE_ATTR_RW(temp1_min, temp, 1);
311static SENSOR_DEVICE_ATTR_RW(temp1_max, temp, 2);
312static SENSOR_DEVICE_ATTR_RO(temp1_min_alarm, alarm, DS1621_ALARM_TEMP_LOW);
313static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, DS1621_ALARM_TEMP_HIGH);
314
315static struct attribute *ds1621_attributes[] = {
316 &sensor_dev_attr_temp1_input.dev_attr.attr,
317 &sensor_dev_attr_temp1_min.dev_attr.attr,
318 &sensor_dev_attr_temp1_max.dev_attr.attr,
319 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
320 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
321 &dev_attr_alarms.attr,
322 &dev_attr_update_interval.attr,
323 NULL
324};
325
326static umode_t ds1621_attribute_visible(struct kobject *kobj,
327 struct attribute *attr, int index)
328{
329 struct device *dev = kobj_to_dev(kobj);
330 struct ds1621_data *data = dev_get_drvdata(dev);
331
332 if (attr == &dev_attr_update_interval.attr)
333 if (data->kind == ds1621 || data->kind == ds1625)
334 /* shhh, we're hiding update_interval */
335 return 0;
336 return attr->mode;
337}
338
339static const struct attribute_group ds1621_group = {
340 .attrs = ds1621_attributes,
341 .is_visible = ds1621_attribute_visible
342};
343__ATTRIBUTE_GROUPS(ds1621);
344
345static int ds1621_probe(struct i2c_client *client)
346{
347 struct ds1621_data *data;
348 struct device *hwmon_dev;
349
350 data = devm_kzalloc(&client->dev, sizeof(struct ds1621_data),
351 GFP_KERNEL);
352 if (!data)
353 return -ENOMEM;
354
355 mutex_init(&data->update_lock);
356
357 data->kind = (uintptr_t)i2c_get_match_data(client);
358 data->client = client;
359
360 /* Initialize the DS1621 chip */
361 ds1621_init_client(data, client);
362
363 hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
364 client->name, data,
365 ds1621_groups);
366 return PTR_ERR_OR_ZERO(hwmon_dev);
367}
368
369static const struct i2c_device_id ds1621_id[] = {
370 { "ds1621", ds1621 },
371 { "ds1625", ds1625 },
372 { "ds1631", ds1631 },
373 { "ds1721", ds1721 },
374 { "ds1731", ds1731 },
375 { }
376};
377MODULE_DEVICE_TABLE(i2c, ds1621_id);
378
379/* This is the driver that will be inserted */
380static struct i2c_driver ds1621_driver = {
381 .driver = {
382 .name = "ds1621",
383 },
384 .probe = ds1621_probe,
385 .id_table = ds1621_id,
386};
387
388module_i2c_driver(ds1621_driver);
389
390MODULE_AUTHOR("Christian W. Zuckschwerdt <zany@triq.net>");
391MODULE_DESCRIPTION("DS1621 driver");
392MODULE_LICENSE("GPL");