Blame view

drivers/hwmon/max1619.c 8.7 KB
c942fddf8   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
2
3
4
  /*
   * max1619.c - Part of lm_sensors, Linux kernel modules for hardware
   *             monitoring
9292f0555   Oleksij Rempel   hwmon: Update Ale...
5
   * Copyright (C) 2003-2004 Oleksij Rempel <bug-track@fisher-privat.net>
7c81c60f3   Jean Delvare   Update Jean Delva...
6
   *                         Jean Delvare <jdelvare@suse.de>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
10
11
12
   *
   * Based on the lm90 driver. The MAX1619 is a sensor chip made by Maxim.
   * It reports up to two temperatures (its own plus up to
   * one external one). Complete datasheet can be
   * obtained from Maxim's website at:
   *   http://pdfserv.maxim-ic.com/en/ds/MAX1619.pdf
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
13
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
14
15
16
17
18
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/i2c.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
19
  #include <linux/hwmon.h>
71062ffcd   Jean Delvare   hwmon: (max1619) ...
20
  #include <linux/hwmon-sysfs.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
21
  #include <linux/err.h>
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
22
  #include <linux/mutex.h>
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
23
  #include <linux/sysfs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
24

25e9c86d5   Mark M. Hoffman   hwmon: normal_i2c...
25
26
  static const unsigned short normal_i2c[] = {
  	0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
   * The MAX1619 registers
   */
  
  #define MAX1619_REG_R_MAN_ID		0xFE
  #define MAX1619_REG_R_CHIP_ID		0xFF
  #define MAX1619_REG_R_CONFIG		0x03
  #define MAX1619_REG_W_CONFIG		0x09
  #define MAX1619_REG_R_CONVRATE		0x04
  #define MAX1619_REG_W_CONVRATE		0x0A
  #define MAX1619_REG_R_STATUS		0x02
  #define MAX1619_REG_R_LOCAL_TEMP	0x00
  #define MAX1619_REG_R_REMOTE_TEMP	0x01
  #define MAX1619_REG_R_REMOTE_HIGH	0x07
  #define MAX1619_REG_W_REMOTE_HIGH	0x0D
  #define MAX1619_REG_R_REMOTE_LOW	0x08
  #define MAX1619_REG_W_REMOTE_LOW	0x0E
  #define MAX1619_REG_R_REMOTE_CRIT	0x10
  #define MAX1619_REG_W_REMOTE_CRIT	0x12
  #define MAX1619_REG_R_TCRIT_HYST	0x11
  #define MAX1619_REG_W_TCRIT_HYST	0x13
  
  /*
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
51
   * Conversions
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
   */
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
53
54
55
56
57
58
59
60
61
  static int temp_from_reg(int val)
  {
  	return (val & 0x80 ? val-0x100 : val) * 1000;
  }
  
  static int temp_to_reg(int val)
  {
  	return (val < 0 ? val+0x100*1000 : val) / 1000;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
62

f83111964   Guenter Roeck   hwmon: (max1619) ...
63
64
65
66
67
68
69
70
71
  enum temp_index {
  	t_input1 = 0,
  	t_input2,
  	t_low2,
  	t_high2,
  	t_crit2,
  	t_hyst2,
  	t_num_regs
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
72
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
73
74
75
76
   * Client data (each client gets its own)
   */
  
  struct max1619_data {
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
77
  	struct i2c_client *client;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
78
  	struct mutex update_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
79
80
81
82
  	char valid; /* zero until following fields are valid */
  	unsigned long last_updated; /* in jiffies */
  
  	/* registers values */
f83111964   Guenter Roeck   hwmon: (max1619) ...
83
  	u8 temp[t_num_regs];	/* index with enum temp_index */
8958dfb74   Guenter Roeck   hwmon: (max1619):...
84
  	u8 alarms;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
  };
f83111964   Guenter Roeck   hwmon: (max1619) ...
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  static const u8 regs_read[t_num_regs] = {
  	[t_input1] = MAX1619_REG_R_LOCAL_TEMP,
  	[t_input2] = MAX1619_REG_R_REMOTE_TEMP,
  	[t_low2] = MAX1619_REG_R_REMOTE_LOW,
  	[t_high2] = MAX1619_REG_R_REMOTE_HIGH,
  	[t_crit2] = MAX1619_REG_R_REMOTE_CRIT,
  	[t_hyst2] = MAX1619_REG_R_TCRIT_HYST,
  };
  
  static const u8 regs_write[t_num_regs] = {
  	[t_low2] = MAX1619_REG_W_REMOTE_LOW,
  	[t_high2] = MAX1619_REG_W_REMOTE_HIGH,
  	[t_crit2] = MAX1619_REG_W_REMOTE_CRIT,
  	[t_hyst2] = MAX1619_REG_W_TCRIT_HYST,
  };
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
101
102
  static struct max1619_data *max1619_update_device(struct device *dev)
  {
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
103
104
  	struct max1619_data *data = dev_get_drvdata(dev);
  	struct i2c_client *client = data->client;
f83111964   Guenter Roeck   hwmon: (max1619) ...
105
  	int config, i;
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
106
107
108
109
110
111
  
  	mutex_lock(&data->update_lock);
  
  	if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
  		dev_dbg(&client->dev, "Updating max1619 data.
  ");
f83111964   Guenter Roeck   hwmon: (max1619) ...
112
113
114
  		for (i = 0; i < t_num_regs; i++)
  			data->temp[i] = i2c_smbus_read_byte_data(client,
  					regs_read[i]);
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  		data->alarms = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_STATUS);
  		/* If OVERT polarity is low, reverse alarm bit */
  		config = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONFIG);
  		if (!(config & 0x20))
  			data->alarms ^= 0x02;
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
  
  	mutex_unlock(&data->update_lock);
  
  	return data;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
130
131
132
  /*
   * Sysfs stuff
   */
21887303b   Guenter Roeck   hwmon: (max1619) ...
133
  static ssize_t temp_show(struct device *dev, struct device_attribute *devattr,
f83111964   Guenter Roeck   hwmon: (max1619) ...
134
135
136
137
138
139
140
  			 char *buf)
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
  	struct max1619_data *data = max1619_update_device(dev);
  
  	return sprintf(buf, "%d
  ", temp_from_reg(data->temp[attr->index]));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
141
  }
21887303b   Guenter Roeck   hwmon: (max1619) ...
142
143
144
  static ssize_t temp_store(struct device *dev,
  			  struct device_attribute *devattr, const char *buf,
  			  size_t count)
f83111964   Guenter Roeck   hwmon: (max1619) ...
145
146
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
147
148
  	struct max1619_data *data = dev_get_drvdata(dev);
  	struct i2c_client *client = data->client;
f83111964   Guenter Roeck   hwmon: (max1619) ...
149
150
151
152
153
154
155
156
157
158
159
160
  	long val;
  	int err = kstrtol(buf, 10, &val);
  	if (err)
  		return err;
  
  	mutex_lock(&data->update_lock);
  	data->temp[attr->index] = temp_to_reg(val);
  	i2c_smbus_write_byte_data(client, regs_write[attr->index],
  				  data->temp[attr->index]);
  	mutex_unlock(&data->update_lock);
  	return count;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
161

23eb359dd   Julia Lawall   hwmon: (max1619) ...
162
  static ssize_t alarms_show(struct device *dev, struct device_attribute *attr,
8958dfb74   Guenter Roeck   hwmon: (max1619):...
163
  			   char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164
165
166
167
168
  {
  	struct max1619_data *data = max1619_update_device(dev);
  	return sprintf(buf, "%d
  ", data->alarms);
  }
21887303b   Guenter Roeck   hwmon: (max1619) ...
169
  static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
71062ffcd   Jean Delvare   hwmon: (max1619) ...
170
171
172
173
174
175
176
  			  char *buf)
  {
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	struct max1619_data *data = max1619_update_device(dev);
  	return sprintf(buf, "%d
  ", (data->alarms >> bitnr) & 1);
  }
21887303b   Guenter Roeck   hwmon: (max1619) ...
177
178
179
180
181
182
  static SENSOR_DEVICE_ATTR_RO(temp1_input, temp, t_input1);
  static SENSOR_DEVICE_ATTR_RO(temp2_input, temp, t_input2);
  static SENSOR_DEVICE_ATTR_RW(temp2_min, temp, t_low2);
  static SENSOR_DEVICE_ATTR_RW(temp2_max, temp, t_high2);
  static SENSOR_DEVICE_ATTR_RW(temp2_crit, temp, t_crit2);
  static SENSOR_DEVICE_ATTR_RW(temp2_crit_hyst, temp, t_hyst2);
f83111964   Guenter Roeck   hwmon: (max1619) ...
183

23eb359dd   Julia Lawall   hwmon: (max1619) ...
184
  static DEVICE_ATTR_RO(alarms);
21887303b   Guenter Roeck   hwmon: (max1619) ...
185
186
187
188
  static SENSOR_DEVICE_ATTR_RO(temp2_crit_alarm, alarm, 1);
  static SENSOR_DEVICE_ATTR_RO(temp2_fault, alarm, 2);
  static SENSOR_DEVICE_ATTR_RO(temp2_min_alarm, alarm, 3);
  static SENSOR_DEVICE_ATTR_RO(temp2_max_alarm, alarm, 4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189

9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
190
  static struct attribute *max1619_attrs[] = {
f83111964   Guenter Roeck   hwmon: (max1619) ...
191
192
193
194
195
196
  	&sensor_dev_attr_temp1_input.dev_attr.attr,
  	&sensor_dev_attr_temp2_input.dev_attr.attr,
  	&sensor_dev_attr_temp2_min.dev_attr.attr,
  	&sensor_dev_attr_temp2_max.dev_attr.attr,
  	&sensor_dev_attr_temp2_crit.dev_attr.attr,
  	&sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
197
198
  
  	&dev_attr_alarms.attr,
71062ffcd   Jean Delvare   hwmon: (max1619) ...
199
200
201
202
  	&sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_fault.dev_attr.attr,
  	&sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
203
204
  	NULL
  };
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
205
  ATTRIBUTE_GROUPS(max1619);
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
206

c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
207
  /* Return 0 if detection is successful, -ENODEV otherwise */
310ec7921   Jean Delvare   i2c: Drop the kin...
208
  static int max1619_detect(struct i2c_client *client,
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
209
  			  struct i2c_board_info *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
210
  {
52df6440a   Jean Delvare   hwmon: Clean up d...
211
212
  	struct i2c_adapter *adapter = client->adapter;
  	u8 reg_config, reg_convrate, reg_status, man_id, chip_id;
b0020e3f5   Andrew Morton   [PATCH] max1619 fix
213

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
214
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
215
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
216

52df6440a   Jean Delvare   hwmon: Clean up d...
217
218
219
220
221
222
223
224
225
226
  	/* detection */
  	reg_config = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONFIG);
  	reg_convrate = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONVRATE);
  	reg_status = i2c_smbus_read_byte_data(client, MAX1619_REG_R_STATUS);
  	if ((reg_config & 0x03) != 0x00
  	 || reg_convrate > 0x07 || (reg_status & 0x61) != 0x00) {
  		dev_dbg(&adapter->dev, "MAX1619 detection failed at 0x%02x
  ",
  			client->addr);
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
227
  	}
52df6440a   Jean Delvare   hwmon: Clean up d...
228
229
230
231
232
233
234
235
236
  	/* identification */
  	man_id = i2c_smbus_read_byte_data(client, MAX1619_REG_R_MAN_ID);
  	chip_id = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CHIP_ID);
  	if (man_id != 0x4D || chip_id != 0x04) {
  		dev_info(&adapter->dev,
  			 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X).
  ",
  			 man_id, chip_id);
  		return -ENODEV;
b0020e3f5   Andrew Morton   [PATCH] max1619 fix
237
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
238

c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
239
240
241
242
  	strlcpy(info->type, "max1619", I2C_NAME_SIZE);
  
  	return 0;
  }
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  static void max1619_init_client(struct i2c_client *client)
  {
  	u8 config;
  
  	/*
  	 * Start the conversions.
  	 */
  	i2c_smbus_write_byte_data(client, MAX1619_REG_W_CONVRATE,
  				  5); /* 2 Hz */
  	config = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONFIG);
  	if (config & 0x40)
  		i2c_smbus_write_byte_data(client, MAX1619_REG_W_CONFIG,
  					  config & 0xBF); /* run */
  }
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
257
258
259
260
  static int max1619_probe(struct i2c_client *new_client,
  			 const struct i2c_device_id *id)
  {
  	struct max1619_data *data;
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
261
  	struct device *hwmon_dev;
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
262

215690a4f   Guenter Roeck   hwmon: (max1619) ...
263
264
265
266
  	data = devm_kzalloc(&new_client->dev, sizeof(struct max1619_data),
  			    GFP_KERNEL);
  	if (!data)
  		return -ENOMEM;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
267

9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
268
  	data->client = new_client;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
269
  	mutex_init(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
270

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
271
272
  	/* Initialize the MAX1619 chip */
  	max1619_init_client(new_client);
9f1513bd5   Guenter Roeck   hwmon: (max1619) ...
273
274
275
276
277
  	hwmon_dev = devm_hwmon_device_register_with_groups(&new_client->dev,
  							   new_client->name,
  							   data,
  							   max1619_groups);
  	return PTR_ERR_OR_ZERO(hwmon_dev);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
278
  }
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
279
280
281
282
283
  static const struct i2c_device_id max1619_id[] = {
  	{ "max1619", 0 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, max1619_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
284

fd53f6216   Alan Tull   hwmon: (max1619) ...
285
286
287
288
289
290
291
292
  #ifdef CONFIG_OF
  static const struct of_device_id max1619_of_match[] = {
  	{ .compatible = "maxim,max1619", },
  	{},
  };
  
  MODULE_DEVICE_TABLE(of, max1619_of_match);
  #endif
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
293
294
295
296
  static struct i2c_driver max1619_driver = {
  	.class		= I2C_CLASS_HWMON,
  	.driver = {
  		.name	= "max1619",
fd53f6216   Alan Tull   hwmon: (max1619) ...
297
  		.of_match_table = of_match_ptr(max1619_of_match),
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
298
299
  	},
  	.probe		= max1619_probe,
40089a9fe   Guenter Roeck   hwmon: (max1619) ...
300
301
302
303
  	.id_table	= max1619_id,
  	.detect		= max1619_detect,
  	.address_list	= normal_i2c,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
304

f0967eea8   Axel Lin   hwmon: convert dr...
305
  module_i2c_driver(max1619_driver);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
306

7c81c60f3   Jean Delvare   Update Jean Delva...
307
  MODULE_AUTHOR("Oleksij Rempel <bug-track@fisher-privat.net>, Jean Delvare <jdelvare@suse.de>");
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
308
309
  MODULE_DESCRIPTION("MAX1619 sensor driver");
  MODULE_LICENSE("GPL");