Blame view

drivers/hwmon/ltc4215.c 8.33 KB
72f5de92e   Ira Snyder   hwmon: Add LTC421...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  /*
   * Driver for Linear Technology LTC4215 I2C Hot Swap Controller
   *
   * Copyright (C) 2009 Ira W. Snyder <iws@ovro.caltech.edu>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; version 2 of the License.
   *
   * Datasheet:
   * http://www.linear.com/pc/downloadDocument.do?navId=H0,C1,C1003,C1006,C1163,P17572,D12697
   */
  
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/err.h>
  #include <linux/slab.h>
  #include <linux/i2c.h>
  #include <linux/hwmon.h>
  #include <linux/hwmon-sysfs.h>
72f5de92e   Ira Snyder   hwmon: Add LTC421...
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
  /* Here are names of the chip's registers (a.k.a. commands) */
  enum ltc4215_cmd {
  	LTC4215_CONTROL			= 0x00, /* rw */
  	LTC4215_ALERT			= 0x01, /* rw */
  	LTC4215_STATUS			= 0x02, /* ro */
  	LTC4215_FAULT			= 0x03, /* rw */
  	LTC4215_SENSE			= 0x04, /* rw */
  	LTC4215_SOURCE			= 0x05, /* rw */
  	LTC4215_ADIN			= 0x06, /* rw */
  };
  
  struct ltc4215_data {
  	struct device *hwmon_dev;
  
  	struct mutex update_lock;
  	bool valid;
  	unsigned long last_updated; /* in jiffies */
  
  	/* Registers */
  	u8 regs[7];
  };
  
  static struct ltc4215_data *ltc4215_update_device(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct ltc4215_data *data = i2c_get_clientdata(client);
  	s32 val;
  	int i;
  
  	mutex_lock(&data->update_lock);
  
  	/* The chip's A/D updates 10 times per second */
  	if (time_after(jiffies, data->last_updated + HZ / 10) || !data->valid) {
  
  		dev_dbg(&client->dev, "Starting ltc4215 update
  ");
  
  		/* Read all registers */
  		for (i = 0; i < ARRAY_SIZE(data->regs); i++) {
  			val = i2c_smbus_read_byte_data(client, i);
  			if (unlikely(val < 0))
  				data->regs[i] = 0;
  			else
  				data->regs[i] = val;
  		}
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
  
  	mutex_unlock(&data->update_lock);
  
  	return data;
  }
  
  /* Return the voltage from the given register in millivolts */
  static int ltc4215_get_voltage(struct device *dev, u8 reg)
  {
  	struct ltc4215_data *data = ltc4215_update_device(dev);
  	const u8 regval = data->regs[reg];
  	u32 voltage = 0;
  
  	switch (reg) {
  	case LTC4215_SENSE:
  		/* 151 uV per increment */
  		voltage = regval * 151 / 1000;
  		break;
  	case LTC4215_SOURCE:
  		/* 60.5 mV per increment */
  		voltage = regval * 605 / 10;
  		break;
  	case LTC4215_ADIN:
  		/* The ADIN input is divided by 12.5, and has 4.82 mV
  		 * per increment, so we have the additional multiply */
  		voltage = regval * 482 * 125 / 1000;
  		break;
  	default:
  		/* If we get here, the developer messed up */
  		WARN_ON_ONCE(1);
  		break;
  	}
  
  	return voltage;
  }
  
  /* Return the current from the sense resistor in mA */
  static unsigned int ltc4215_get_current(struct device *dev)
  {
  	struct ltc4215_data *data = ltc4215_update_device(dev);
  
  	/* The strange looking conversions that follow are fixed-point
  	 * math, since we cannot do floating point in the kernel.
  	 *
  	 * Step 1: convert sense register to microVolts
  	 * Step 2: convert voltage to milliAmperes
  	 *
  	 * If you play around with the V=IR equation, you come up with
  	 * the following: X uV / Y mOhm == Z mA
  	 *
  	 * With the resistors that are fractions of a milliOhm, we multiply
  	 * the voltage and resistance by 10, to shift the decimal point.
  	 * Now we can use the normal division operator again.
  	 */
  
  	/* Calculate voltage in microVolts (151 uV per increment) */
  	const unsigned int voltage = data->regs[LTC4215_SENSE] * 151;
  
  	/* Calculate current in milliAmperes (4 milliOhm sense resistor) */
  	const unsigned int curr = voltage / 4;
  
  	return curr;
  }
  
  static ssize_t ltc4215_show_voltage(struct device *dev,
  				    struct device_attribute *da,
  				    char *buf)
  {
  	struct sensor_device_attribute *attr = to_sensor_dev_attr(da);
  	const int voltage = ltc4215_get_voltage(dev, attr->index);
  
  	return snprintf(buf, PAGE_SIZE, "%d
  ", voltage);
  }
  
  static ssize_t ltc4215_show_current(struct device *dev,
  				    struct device_attribute *da,
  				    char *buf)
  {
  	const unsigned int curr = ltc4215_get_current(dev);
  
  	return snprintf(buf, PAGE_SIZE, "%u
  ", curr);
  }
  
  static ssize_t ltc4215_show_power(struct device *dev,
  				  struct device_attribute *da,
  				  char *buf)
  {
  	const unsigned int curr = ltc4215_get_current(dev);
  	const int output_voltage = ltc4215_get_voltage(dev, LTC4215_ADIN);
  
  	/* current in mA * voltage in mV == power in uW */
  	const unsigned int power = abs(output_voltage * curr);
  
  	return snprintf(buf, PAGE_SIZE, "%u
  ", power);
  }
  
  static ssize_t ltc4215_show_alarm(struct device *dev,
  					  struct device_attribute *da,
  					  char *buf)
  {
  	struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(da);
  	struct ltc4215_data *data = ltc4215_update_device(dev);
  	const u8 reg = data->regs[attr->index];
  	const u32 mask = attr->nr;
  
  	return snprintf(buf, PAGE_SIZE, "%u
  ", (reg & mask) ? 1 : 0);
  }
  
  /* These macros are used below in constructing device attribute objects
   * for use with sysfs_create_group() to make a sysfs device file
   * for each register.
   */
  
  #define LTC4215_VOLTAGE(name, ltc4215_cmd_idx) \
  	static SENSOR_DEVICE_ATTR(name, S_IRUGO, \
  	ltc4215_show_voltage, NULL, ltc4215_cmd_idx)
  
  #define LTC4215_CURRENT(name) \
  	static SENSOR_DEVICE_ATTR(name, S_IRUGO, \
  	ltc4215_show_current, NULL, 0);
  
  #define LTC4215_POWER(name) \
  	static SENSOR_DEVICE_ATTR(name, S_IRUGO, \
  	ltc4215_show_power, NULL, 0);
  
  #define LTC4215_ALARM(name, mask, reg) \
  	static SENSOR_DEVICE_ATTR_2(name, S_IRUGO, \
  	ltc4215_show_alarm, NULL, (mask), reg)
  
  /* Construct a sensor_device_attribute structure for each register */
  
  /* Current */
  LTC4215_CURRENT(curr1_input);
  LTC4215_ALARM(curr1_max_alarm,	(1 << 2),	LTC4215_STATUS);
  
  /* Power (virtual) */
  LTC4215_POWER(power1_input);
72f5de92e   Ira Snyder   hwmon: Add LTC421...
212
213
214
215
216
217
218
219
  
  /* Input Voltage */
  LTC4215_VOLTAGE(in1_input,			LTC4215_ADIN);
  LTC4215_ALARM(in1_max_alarm,	(1 << 0),	LTC4215_STATUS);
  LTC4215_ALARM(in1_min_alarm,	(1 << 1),	LTC4215_STATUS);
  
  /* Output Voltage */
  LTC4215_VOLTAGE(in2_input,			LTC4215_SOURCE);
0a6bf658c   Ira W. Snyder   hwmon: (ltc4215) ...
220
  LTC4215_ALARM(in2_min_alarm,	(1 << 3),	LTC4215_STATUS);
72f5de92e   Ira Snyder   hwmon: Add LTC421...
221
222
223
224
225
226
227
228
229
  
  /* Finally, construct an array of pointers to members of the above objects,
   * as required for sysfs_create_group()
   */
  static struct attribute *ltc4215_attributes[] = {
  	&sensor_dev_attr_curr1_input.dev_attr.attr,
  	&sensor_dev_attr_curr1_max_alarm.dev_attr.attr,
  
  	&sensor_dev_attr_power1_input.dev_attr.attr,
72f5de92e   Ira Snyder   hwmon: Add LTC421...
230
231
232
233
234
235
  
  	&sensor_dev_attr_in1_input.dev_attr.attr,
  	&sensor_dev_attr_in1_max_alarm.dev_attr.attr,
  	&sensor_dev_attr_in1_min_alarm.dev_attr.attr,
  
  	&sensor_dev_attr_in2_input.dev_attr.attr,
0a6bf658c   Ira W. Snyder   hwmon: (ltc4215) ...
236
  	&sensor_dev_attr_in2_min_alarm.dev_attr.attr,
72f5de92e   Ira Snyder   hwmon: Add LTC421...
237
238
239
240
241
242
243
244
245
246
247
  
  	NULL,
  };
  
  static const struct attribute_group ltc4215_group = {
  	.attrs = ltc4215_attributes,
  };
  
  static int ltc4215_probe(struct i2c_client *client,
  			 const struct i2c_device_id *id)
  {
2d2a7cff1   Jean Delvare   ltc4215/ltc4245: ...
248
  	struct i2c_adapter *adapter = client->adapter;
72f5de92e   Ira Snyder   hwmon: Add LTC421...
249
250
  	struct ltc4215_data *data;
  	int ret;
2d2a7cff1   Jean Delvare   ltc4215/ltc4245: ...
251
252
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
  		return -ENODEV;
72f5de92e   Ira Snyder   hwmon: Add LTC421...
253
254
255
256
257
258
259
260
261
262
  	data = kzalloc(sizeof(*data), GFP_KERNEL);
  	if (!data) {
  		ret = -ENOMEM;
  		goto out_kzalloc;
  	}
  
  	i2c_set_clientdata(client, data);
  	mutex_init(&data->update_lock);
  
  	/* Initialize the LTC4215 chip */
b6b9d6960   Ira W. Snyder   hwmon: (ltc4215) ...
263
  	i2c_smbus_write_byte_data(client, LTC4215_FAULT, 0x00);
72f5de92e   Ira Snyder   hwmon: Add LTC421...
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
  
  	/* Register sysfs hooks */
  	ret = sysfs_create_group(&client->dev.kobj, &ltc4215_group);
  	if (ret)
  		goto out_sysfs_create_group;
  
  	data->hwmon_dev = hwmon_device_register(&client->dev);
  	if (IS_ERR(data->hwmon_dev)) {
  		ret = PTR_ERR(data->hwmon_dev);
  		goto out_hwmon_device_register;
  	}
  
  	return 0;
  
  out_hwmon_device_register:
  	sysfs_remove_group(&client->dev.kobj, &ltc4215_group);
  out_sysfs_create_group:
  	kfree(data);
  out_kzalloc:
  	return ret;
  }
  
  static int ltc4215_remove(struct i2c_client *client)
  {
  	struct ltc4215_data *data = i2c_get_clientdata(client);
  
  	hwmon_device_unregister(data->hwmon_dev);
  	sysfs_remove_group(&client->dev.kobj, &ltc4215_group);
  
  	kfree(data);
  
  	return 0;
  }
72f5de92e   Ira Snyder   hwmon: Add LTC421...
297
  static const struct i2c_device_id ltc4215_id[] = {
2d2a7cff1   Jean Delvare   ltc4215/ltc4245: ...
298
  	{ "ltc4215", 0 },
72f5de92e   Ira Snyder   hwmon: Add LTC421...
299
300
301
302
303
304
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, ltc4215_id);
  
  /* This is the driver that will be inserted */
  static struct i2c_driver ltc4215_driver = {
72f5de92e   Ira Snyder   hwmon: Add LTC421...
305
306
307
308
309
310
  	.driver = {
  		.name	= "ltc4215",
  	},
  	.probe		= ltc4215_probe,
  	.remove		= ltc4215_remove,
  	.id_table	= ltc4215_id,
72f5de92e   Ira Snyder   hwmon: Add LTC421...
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
  };
  
  static int __init ltc4215_init(void)
  {
  	return i2c_add_driver(&ltc4215_driver);
  }
  
  static void __exit ltc4215_exit(void)
  {
  	i2c_del_driver(&ltc4215_driver);
  }
  
  MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>");
  MODULE_DESCRIPTION("LTC4215 driver");
  MODULE_LICENSE("GPL");
  
  module_init(ltc4215_init);
  module_exit(ltc4215_exit);