Blame view

drivers/hwmon/max6642.c 8.17 KB
74ba9207e   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-or-later
83bffbce7   Per Dalén   hwmon: Add suppor...
2
3
4
5
6
7
8
9
10
  /*
   * Driver for +/-1 degree C, SMBus-Compatible Remote/Local Temperature Sensor
   * with Overtemperature Alarm
   *
   * Copyright (C) 2011 AppearTV AS
   *
   * Derived from:
   *
   *  Based on the max1619 driver.
9292f0555   Oleksij Rempel   hwmon: Update Ale...
11
   *  Copyright (C) 2003-2004 Oleksij Rempel <bug-track@fisher-privat.net>
7c81c60f3   Jean Delvare   Update Jean Delva...
12
   *                          Jean Delvare <jdelvare@suse.de>
83bffbce7   Per Dalén   hwmon: Add suppor...
13
14
15
16
17
18
   *
   * The MAX6642 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://datasheets.maxim-ic.com/en/ds/MAX6642.pdf
83bffbce7   Per Dalén   hwmon: Add suppor...
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
   */
  
  
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/i2c.h>
  #include <linux/hwmon.h>
  #include <linux/hwmon-sysfs.h>
  #include <linux/err.h>
  #include <linux/mutex.h>
  #include <linux/sysfs.h>
  
  static const unsigned short normal_i2c[] = {
  	0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
  
  /*
   * The MAX6642 registers
   */
  
  #define MAX6642_REG_R_MAN_ID		0xFE
  #define MAX6642_REG_R_CONFIG		0x03
  #define MAX6642_REG_W_CONFIG		0x09
  #define MAX6642_REG_R_STATUS		0x02
  #define MAX6642_REG_R_LOCAL_TEMP	0x00
  #define MAX6642_REG_R_LOCAL_TEMPL	0x11
  #define MAX6642_REG_R_LOCAL_HIGH	0x05
  #define MAX6642_REG_W_LOCAL_HIGH	0x0B
  #define MAX6642_REG_R_REMOTE_TEMP	0x01
  #define MAX6642_REG_R_REMOTE_TEMPL	0x10
  #define MAX6642_REG_R_REMOTE_HIGH	0x07
  #define MAX6642_REG_W_REMOTE_HIGH	0x0D
  
  /*
   * Conversions
   */
  
  static int temp_from_reg10(int val)
  {
  	return val * 250;
  }
  
  static int temp_from_reg(int val)
  {
  	return val * 1000;
  }
  
  static int temp_to_reg(int val)
  {
  	return val / 1000;
  }
  
  /*
   * Client data (each client gets its own)
   */
  
  struct max6642_data {
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
77
  	struct i2c_client *client;
83bffbce7   Per Dalén   hwmon: Add suppor...
78
79
80
81
82
83
84
85
86
87
88
89
90
  	struct mutex update_lock;
  	bool valid; /* zero until following fields are valid */
  	unsigned long last_updated; /* in jiffies */
  
  	/* registers values */
  	u16 temp_input[2]; /* local/remote */
  	u16 temp_high[2]; /* local/remote */
  	u8 alarms;
  };
  
  /*
   * Real code
   */
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
91
92
  static void max6642_init_client(struct max6642_data *data,
  				struct i2c_client *client)
83bffbce7   Per Dalén   hwmon: Add suppor...
93
94
  {
  	u8 config;
83bffbce7   Per Dalén   hwmon: Add suppor...
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
  
  	/*
  	 * Start the conversions.
  	 */
  	config = i2c_smbus_read_byte_data(client, MAX6642_REG_R_CONFIG);
  	if (config & 0x40)
  		i2c_smbus_write_byte_data(client, MAX6642_REG_W_CONFIG,
  					  config & 0xBF); /* run */
  
  	data->temp_high[0] = i2c_smbus_read_byte_data(client,
  				MAX6642_REG_R_LOCAL_HIGH);
  	data->temp_high[1] = i2c_smbus_read_byte_data(client,
  				MAX6642_REG_R_REMOTE_HIGH);
  }
  
  /* Return 0 if detection is successful, -ENODEV otherwise */
  static int max6642_detect(struct i2c_client *client,
  			  struct i2c_board_info *info)
  {
  	struct i2c_adapter *adapter = client->adapter;
  	u8 reg_config, reg_status, man_id;
  
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  		return -ENODEV;
  
  	/* identification */
  	man_id = i2c_smbus_read_byte_data(client, MAX6642_REG_R_MAN_ID);
  	if (man_id != 0x4D)
  		return -ENODEV;
942c1a927   Per Dalén   hwmon: (max6642):...
124
125
126
127
128
  	/* sanity check */
  	if (i2c_smbus_read_byte_data(client, 0x04) != 0x4D
  	    || i2c_smbus_read_byte_data(client, 0x06) != 0x4D
  	    || i2c_smbus_read_byte_data(client, 0xff) != 0x4D)
  		return -ENODEV;
83bffbce7   Per Dalén   hwmon: Add suppor...
129
130
131
132
133
134
  	/*
  	 * We read the config and status register, the 4 lower bits in the
  	 * config register should be zero and bit 5, 3, 1 and 0 should be
  	 * zero in the status register.
  	 */
  	reg_config = i2c_smbus_read_byte_data(client, MAX6642_REG_R_CONFIG);
942c1a927   Per Dalén   hwmon: (max6642):...
135
136
137
138
139
140
141
142
  	if ((reg_config & 0x0f) != 0x00)
  		return -ENODEV;
  
  	/* in between, another round of sanity checks */
  	if (i2c_smbus_read_byte_data(client, 0x04) != reg_config
  	    || i2c_smbus_read_byte_data(client, 0x06) != reg_config
  	    || i2c_smbus_read_byte_data(client, 0xff) != reg_config)
  		return -ENODEV;
83bffbce7   Per Dalén   hwmon: Add suppor...
143
  	reg_status = i2c_smbus_read_byte_data(client, MAX6642_REG_R_STATUS);
942c1a927   Per Dalén   hwmon: (max6642):...
144
  	if ((reg_status & 0x2b) != 0x00)
83bffbce7   Per Dalén   hwmon: Add suppor...
145
146
147
148
149
150
151
152
153
  		return -ENODEV;
  
  	strlcpy(info->type, "max6642", I2C_NAME_SIZE);
  
  	return 0;
  }
  
  static struct max6642_data *max6642_update_device(struct device *dev)
  {
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
154
155
  	struct max6642_data *data = dev_get_drvdata(dev);
  	struct i2c_client *client = data->client;
83bffbce7   Per Dalén   hwmon: Add suppor...
156
157
158
159
160
  	u16 val, tmp;
  
  	mutex_lock(&data->update_lock);
  
  	if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
161
162
  		dev_dbg(dev, "Updating max6642 data.
  ");
83bffbce7   Per Dalén   hwmon: Add suppor...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
  		val = i2c_smbus_read_byte_data(client,
  					MAX6642_REG_R_LOCAL_TEMPL);
  		tmp = (val >> 6) & 3;
  		val = i2c_smbus_read_byte_data(client,
  					MAX6642_REG_R_LOCAL_TEMP);
  		val = (val << 2) | tmp;
  		data->temp_input[0] = val;
  		val = i2c_smbus_read_byte_data(client,
  					MAX6642_REG_R_REMOTE_TEMPL);
  		tmp = (val >> 6) & 3;
  		val = i2c_smbus_read_byte_data(client,
  					MAX6642_REG_R_REMOTE_TEMP);
  		val = (val << 2) | tmp;
  		data->temp_input[1] = val;
  		data->alarms = i2c_smbus_read_byte_data(client,
  					MAX6642_REG_R_STATUS);
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
  
  	mutex_unlock(&data->update_lock);
  
  	return data;
  }
  
  /*
   * Sysfs stuff
   */
823b86783   Guenter Roeck   hwmon: (max6642) ...
192
  static ssize_t temp_max10_show(struct device *dev,
83bffbce7   Per Dalén   hwmon: Add suppor...
193
194
  			       struct device_attribute *dev_attr, char *buf)
  {
83bffbce7   Per Dalén   hwmon: Add suppor...
195
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(dev_attr);
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
196
  	struct max6642_data *data = max6642_update_device(dev);
83bffbce7   Per Dalén   hwmon: Add suppor...
197
198
199
200
201
  
  	return sprintf(buf, "%d
  ",
  		       temp_from_reg10(data->temp_input[attr->index]));
  }
823b86783   Guenter Roeck   hwmon: (max6642) ...
202
203
  static ssize_t temp_max_show(struct device *dev,
  			     struct device_attribute *attr, char *buf)
83bffbce7   Per Dalén   hwmon: Add suppor...
204
  {
83bffbce7   Per Dalén   hwmon: Add suppor...
205
  	struct sensor_device_attribute_2 *attr2 = to_sensor_dev_attr_2(attr);
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
206
  	struct max6642_data *data = max6642_update_device(dev);
83bffbce7   Per Dalén   hwmon: Add suppor...
207
208
209
210
  
  	return sprintf(buf, "%d
  ", temp_from_reg(data->temp_high[attr2->nr]));
  }
823b86783   Guenter Roeck   hwmon: (max6642) ...
211
212
213
  static ssize_t temp_max_store(struct device *dev,
  			      struct device_attribute *attr, const char *buf,
  			      size_t count)
83bffbce7   Per Dalén   hwmon: Add suppor...
214
  {
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
215
216
  	struct sensor_device_attribute_2 *attr2 = to_sensor_dev_attr_2(attr);
  	struct max6642_data *data = dev_get_drvdata(dev);
83bffbce7   Per Dalén   hwmon: Add suppor...
217
218
  	unsigned long val;
  	int err;
83bffbce7   Per Dalén   hwmon: Add suppor...
219

179c4fdb5   Frans Meulenbroeks   hwmon: replaced s...
220
  	err = kstrtoul(buf, 10, &val);
83bffbce7   Per Dalén   hwmon: Add suppor...
221
222
223
224
  	if (err < 0)
  		return err;
  
  	mutex_lock(&data->update_lock);
2a844c148   Guenter Roeck   hwmon: Replace SE...
225
  	data->temp_high[attr2->nr] = clamp_val(temp_to_reg(val), 0, 255);
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
226
  	i2c_smbus_write_byte_data(data->client, attr2->index,
83bffbce7   Per Dalén   hwmon: Add suppor...
227
228
229
230
  				  data->temp_high[attr2->nr]);
  	mutex_unlock(&data->update_lock);
  	return count;
  }
823b86783   Guenter Roeck   hwmon: (max6642) ...
231
  static ssize_t alarm_show(struct device *dev, struct device_attribute *attr,
83bffbce7   Per Dalén   hwmon: Add suppor...
232
233
234
235
236
237
238
  			  char *buf)
  {
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	struct max6642_data *data = max6642_update_device(dev);
  	return sprintf(buf, "%d
  ", (data->alarms >> bitnr) & 1);
  }
823b86783   Guenter Roeck   hwmon: (max6642) ...
239
240
241
242
243
244
245
246
247
  static SENSOR_DEVICE_ATTR_RO(temp1_input, temp_max10, 0);
  static SENSOR_DEVICE_ATTR_RO(temp2_input, temp_max10, 1);
  static SENSOR_DEVICE_ATTR_2_RW(temp1_max, temp_max, 0,
  			       MAX6642_REG_W_LOCAL_HIGH);
  static SENSOR_DEVICE_ATTR_2_RW(temp2_max, temp_max, 1,
  			       MAX6642_REG_W_REMOTE_HIGH);
  static SENSOR_DEVICE_ATTR_RO(temp2_fault, alarm, 2);
  static SENSOR_DEVICE_ATTR_RO(temp1_max_alarm, alarm, 6);
  static SENSOR_DEVICE_ATTR_RO(temp2_max_alarm, alarm, 4);
83bffbce7   Per Dalén   hwmon: Add suppor...
248

9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
249
  static struct attribute *max6642_attrs[] = {
83bffbce7   Per Dalén   hwmon: Add suppor...
250
251
252
253
  	&sensor_dev_attr_temp1_input.dev_attr.attr,
  	&sensor_dev_attr_temp2_input.dev_attr.attr,
  	&sensor_dev_attr_temp1_max.dev_attr.attr,
  	&sensor_dev_attr_temp2_max.dev_attr.attr,
614198bbf   Per Dalen   hwmon: (max6642) ...
254
  	&sensor_dev_attr_temp2_fault.dev_attr.attr,
83bffbce7   Per Dalén   hwmon: Add suppor...
255
256
257
258
  	&sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
  	NULL
  };
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
259
  ATTRIBUTE_GROUPS(max6642);
83bffbce7   Per Dalén   hwmon: Add suppor...
260

674870385   Stephen Kitt   hwmon: use simple...
261
  static int max6642_probe(struct i2c_client *client)
83bffbce7   Per Dalén   hwmon: Add suppor...
262
  {
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
263
  	struct device *dev = &client->dev;
83bffbce7   Per Dalén   hwmon: Add suppor...
264
  	struct max6642_data *data;
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
265
  	struct device *hwmon_dev;
83bffbce7   Per Dalén   hwmon: Add suppor...
266

9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
267
  	data = devm_kzalloc(dev, sizeof(struct max6642_data), GFP_KERNEL);
96f316c24   Guenter Roeck   hwmon: (max6642) ...
268
269
  	if (!data)
  		return -ENOMEM;
83bffbce7   Per Dalén   hwmon: Add suppor...
270

9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
271
  	data->client = client;
83bffbce7   Per Dalén   hwmon: Add suppor...
272
273
274
  	mutex_init(&data->update_lock);
  
  	/* Initialize the MAX6642 chip */
9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
275
  	max6642_init_client(data, client);
83bffbce7   Per Dalén   hwmon: Add suppor...
276

9bd024e9f   Guenter Roeck   hwmon: (max6642) ...
277
278
279
  	hwmon_dev = devm_hwmon_device_register_with_groups(&client->dev,
  							   client->name, data,
  							   max6642_groups);
e5840c78f   Fengguang Wu   hwmon: (max6642 f...
280
  	return PTR_ERR_OR_ZERO(hwmon_dev);
83bffbce7   Per Dalén   hwmon: Add suppor...
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
  }
  
  /*
   * Driver data (common to all clients)
   */
  
  static const struct i2c_device_id max6642_id[] = {
  	{ "max6642", 0 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, max6642_id);
  
  static struct i2c_driver max6642_driver = {
  	.class		= I2C_CLASS_HWMON,
  	.driver = {
  		.name	= "max6642",
  	},
674870385   Stephen Kitt   hwmon: use simple...
298
  	.probe_new	= max6642_probe,
83bffbce7   Per Dalén   hwmon: Add suppor...
299
300
301
302
  	.id_table	= max6642_id,
  	.detect		= max6642_detect,
  	.address_list	= normal_i2c,
  };
f0967eea8   Axel Lin   hwmon: convert dr...
303
  module_i2c_driver(max6642_driver);
83bffbce7   Per Dalén   hwmon: Add suppor...
304
305
306
307
  
  MODULE_AUTHOR("Per Dalen <per.dalen@appeartv.com>");
  MODULE_DESCRIPTION("MAX6642 sensor driver");
  MODULE_LICENSE("GPL");