Blame view

drivers/hwmon/s3c-hwmon.c 10.3 KB
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
  /* linux/drivers/hwmon/s3c-hwmon.c
   *
   * Copyright (C) 2005, 2008, 2009 Simtec Electronics
   *	http://armlinux.simtec.co.uk/
   *	Ben Dooks <ben@simtec.co.uk>
   *
   * S3C24XX/S3C64XX ADC hwmon support
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
  
  #include <linux/module.h>
  #include <linux/slab.h>
  #include <linux/delay.h>
  #include <linux/io.h>
  #include <linux/init.h>
  #include <linux/err.h>
  #include <linux/clk.h>
  #include <linux/interrupt.h>
  #include <linux/platform_device.h>
  
  #include <linux/hwmon.h>
  #include <linux/hwmon-sysfs.h>
  
  #include <plat/adc.h>
  #include <plat/hwmon.h>
  
  struct s3c_hwmon_attr {
  	struct sensor_device_attribute	in;
  	struct sensor_device_attribute	label;
  	char				in_name[12];
  	char				label_name[12];
  };
  
  /**
   * struct s3c_hwmon - ADC hwmon client information
   * @lock: Access lock to serialise the conversions.
   * @client: The client we registered with the S3C ADC core.
   * @hwmon_dev: The hwmon device we created.
   * @attr: The holders for the channel attributes.
  */
  struct s3c_hwmon {
9c627e3be   Thomas Gleixner   hwmon: (s3c-hwmon...
54
  	struct mutex		lock;
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
  	struct s3c_adc_client	*client;
  	struct device		*hwmon_dev;
  
  	struct s3c_hwmon_attr	attrs[8];
  };
  
  /**
   * s3c_hwmon_read_ch - read a value from a given adc channel.
   * @dev: The device.
   * @hwmon: Our state.
   * @channel: The channel we're reading from.
   *
   * Read a value from the @channel with the proper locking and sleep until
   * either the read completes or we timeout awaiting the ADC core to get
   * back to us.
   */
  static int s3c_hwmon_read_ch(struct device *dev,
  			     struct s3c_hwmon *hwmon, int channel)
  {
  	int ret;
9c627e3be   Thomas Gleixner   hwmon: (s3c-hwmon...
75
  	ret = mutex_lock_interruptible(&hwmon->lock);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
76
77
78
79
80
81
82
  	if (ret < 0)
  		return ret;
  
  	dev_dbg(dev, "reading channel %d
  ", channel);
  
  	ret = s3c_adc_read(hwmon->client, channel);
9c627e3be   Thomas Gleixner   hwmon: (s3c-hwmon...
83
  	mutex_unlock(&hwmon->lock);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
  
  	return ret;
  }
  
  #ifdef CONFIG_SENSORS_S3C_RAW
  /**
   * s3c_hwmon_show_raw - show a conversion from the raw channel number.
   * @dev: The device that the attribute belongs to.
   * @attr: The attribute being read.
   * @buf: The result buffer.
   *
   * This show deals with the raw attribute, registered for each possible
   * ADC channel. This does a conversion and returns the raw (un-scaled)
   * value returned from the hardware.
   */
  static ssize_t s3c_hwmon_show_raw(struct device *dev,
  				  struct device_attribute *attr, char *buf)
  {
  	struct s3c_hwmon *adc = platform_get_drvdata(to_platform_device(dev));
  	struct sensor_device_attribute *sa = to_sensor_dev_attr(attr);
  	int ret;
  
  	ret = s3c_hwmon_read_ch(dev, adc, sa->index);
  
  	return  (ret < 0) ? ret : snprintf(buf, PAGE_SIZE, "%d
  ", ret);
  }
  
  #define DEF_ADC_ATTR(x)	\
  	static SENSOR_DEVICE_ATTR(adc##x##_raw, S_IRUGO, s3c_hwmon_show_raw, NULL, x)
  
  DEF_ADC_ATTR(0);
  DEF_ADC_ATTR(1);
  DEF_ADC_ATTR(2);
  DEF_ADC_ATTR(3);
  DEF_ADC_ATTR(4);
  DEF_ADC_ATTR(5);
  DEF_ADC_ATTR(6);
  DEF_ADC_ATTR(7);
  
  static struct attribute *s3c_hwmon_attrs[9] = {
  	&sensor_dev_attr_adc0_raw.dev_attr.attr,
  	&sensor_dev_attr_adc1_raw.dev_attr.attr,
  	&sensor_dev_attr_adc2_raw.dev_attr.attr,
  	&sensor_dev_attr_adc3_raw.dev_attr.attr,
  	&sensor_dev_attr_adc4_raw.dev_attr.attr,
  	&sensor_dev_attr_adc5_raw.dev_attr.attr,
  	&sensor_dev_attr_adc6_raw.dev_attr.attr,
  	&sensor_dev_attr_adc7_raw.dev_attr.attr,
  	NULL,
  };
  
  static struct attribute_group s3c_hwmon_attrgroup = {
  	.attrs	= s3c_hwmon_attrs,
  };
  
  static inline int s3c_hwmon_add_raw(struct device *dev)
  {
  	return sysfs_create_group(&dev->kobj, &s3c_hwmon_attrgroup);
  }
  
  static inline void s3c_hwmon_remove_raw(struct device *dev)
  {
  	sysfs_remove_group(&dev->kobj, &s3c_hwmon_attrgroup);
  }
  
  #else
  
  static inline int s3c_hwmon_add_raw(struct device *dev) { return 0; }
  static inline void s3c_hwmon_remove_raw(struct device *dev) { }
  
  #endif /* CONFIG_SENSORS_S3C_RAW */
  
  /**
   * s3c_hwmon_ch_show - show value of a given channel
   * @dev: The device that the attribute belongs to.
   * @attr: The attribute being read.
   * @buf: The result buffer.
   *
   * Read a value from the ADC and scale it before returning it to the
   * caller. The scale factor is gained from the channel configuration
   * passed via the platform data when the device was registered.
   */
  static ssize_t s3c_hwmon_ch_show(struct device *dev,
  				 struct device_attribute *attr,
  				 char *buf)
  {
  	struct sensor_device_attribute *sen_attr = to_sensor_dev_attr(attr);
  	struct s3c_hwmon *hwmon = platform_get_drvdata(to_platform_device(dev));
  	struct s3c_hwmon_pdata *pdata = dev->platform_data;
  	struct s3c_hwmon_chcfg *cfg;
  	int ret;
  
  	cfg = pdata->in[sen_attr->index];
  
  	ret = s3c_hwmon_read_ch(dev, hwmon, sen_attr->index);
  	if (ret < 0)
  		return ret;
  
  	ret *= cfg->mult;
  	ret = DIV_ROUND_CLOSEST(ret, cfg->div);
  
  	return snprintf(buf, PAGE_SIZE, "%d
  ", ret);
  }
  
  /**
   * s3c_hwmon_label_show - show label name of the given channel.
   * @dev: The device that the attribute belongs to.
   * @attr: The attribute being read.
   * @buf: The result buffer.
   *
   * Return the label name of a given channel
   */
  static ssize_t s3c_hwmon_label_show(struct device *dev,
  				    struct device_attribute *attr,
  				    char *buf)
  {
  	struct sensor_device_attribute *sen_attr = to_sensor_dev_attr(attr);
  	struct s3c_hwmon_pdata *pdata = dev->platform_data;
  	struct s3c_hwmon_chcfg *cfg;
  
  	cfg = pdata->in[sen_attr->index];
  
  	return snprintf(buf, PAGE_SIZE, "%s
  ", cfg->name);
  }
  
  /**
   * s3c_hwmon_create_attr - create hwmon attribute for given channel.
   * @dev: The device to create the attribute on.
   * @cfg: The channel configuration passed from the platform data.
   * @channel: The ADC channel number to process.
   *
   * Create the scaled attribute for use with hwmon from the specified
   * platform data in @pdata. The sysfs entry is handled by the routine
   * s3c_hwmon_ch_show().
   *
   * The attribute name is taken from the configuration data if present
   * otherwise the name is taken by concatenating in_ with the channel
   * number.
   */
  static int s3c_hwmon_create_attr(struct device *dev,
  				 struct s3c_hwmon_chcfg *cfg,
  				 struct s3c_hwmon_attr *attrs,
  				 int channel)
  {
  	struct sensor_device_attribute *attr;
  	int ret;
  
  	snprintf(attrs->in_name, sizeof(attrs->in_name), "in%d_input", channel);
  
  	attr = &attrs->in;
  	attr->index = channel;
b1e698db0   Guenter Roeck   hwmon: (s3c) Init...
238
  	sysfs_attr_init(&attr->dev_attr.attr);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
239
240
  	attr->dev_attr.attr.name  = attrs->in_name;
  	attr->dev_attr.attr.mode  = S_IRUGO;
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  	attr->dev_attr.show = s3c_hwmon_ch_show;
  
  	ret =  device_create_file(dev, &attr->dev_attr);
  	if (ret < 0) {
  		dev_err(dev, "failed to create input attribute
  ");
  		return ret;
  	}
  
  	/* if this has a name, add a label */
  	if (cfg->name) {
  		snprintf(attrs->label_name, sizeof(attrs->label_name),
  			 "in%d_label", channel);
  
  		attr = &attrs->label;
  		attr->index = channel;
b1e698db0   Guenter Roeck   hwmon: (s3c) Init...
257
  		sysfs_attr_init(&attr->dev_attr.attr);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
258
259
  		attr->dev_attr.attr.name  = attrs->label_name;
  		attr->dev_attr.attr.mode  = S_IRUGO;
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
260
261
262
263
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
297
298
299
300
301
302
303
304
  		attr->dev_attr.show = s3c_hwmon_label_show;
  
  		ret = device_create_file(dev, &attr->dev_attr);
  		if (ret < 0) {
  			device_remove_file(dev, &attrs->in.dev_attr);
  			dev_err(dev, "failed to create label attribute
  ");
  		}
  	}
  
  	return ret;
  }
  
  static void s3c_hwmon_remove_attr(struct device *dev,
  				  struct s3c_hwmon_attr *attrs)
  {
  	device_remove_file(dev, &attrs->in.dev_attr);
  	device_remove_file(dev, &attrs->label.dev_attr);
  }
  
  /**
   * s3c_hwmon_probe - device probe entry.
   * @dev: The device being probed.
  */
  static int __devinit s3c_hwmon_probe(struct platform_device *dev)
  {
  	struct s3c_hwmon_pdata *pdata = dev->dev.platform_data;
  	struct s3c_hwmon *hwmon;
  	int ret = 0;
  	int i;
  
  	if (!pdata) {
  		dev_err(&dev->dev, "no platform data supplied
  ");
  		return -EINVAL;
  	}
  
  	hwmon = kzalloc(sizeof(struct s3c_hwmon), GFP_KERNEL);
  	if (hwmon == NULL) {
  		dev_err(&dev->dev, "no memory
  ");
  		return -ENOMEM;
  	}
  
  	platform_set_drvdata(dev, hwmon);
9c627e3be   Thomas Gleixner   hwmon: (s3c-hwmon...
305
  	mutex_init(&hwmon->lock);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
  
  	/* Register with the core ADC driver. */
  
  	hwmon->client = s3c_adc_register(dev, NULL, NULL, 0);
  	if (IS_ERR(hwmon->client)) {
  		dev_err(&dev->dev, "cannot register adc
  ");
  		ret = PTR_ERR(hwmon->client);
  		goto err_mem;
  	}
  
  	/* add attributes for our adc devices. */
  
  	ret = s3c_hwmon_add_raw(&dev->dev);
  	if (ret)
  		goto err_registered;
  
  	/* register with the hwmon core */
  
  	hwmon->hwmon_dev = hwmon_device_register(&dev->dev);
  	if (IS_ERR(hwmon->hwmon_dev)) {
  		dev_err(&dev->dev, "error registering with hwmon
  ");
  		ret = PTR_ERR(hwmon->hwmon_dev);
  		goto err_raw_attribute;
  	}
  
  	for (i = 0; i < ARRAY_SIZE(pdata->in); i++) {
6d905e67c   Ben Dooks   hwmon: (s3c-hwmon...
334
  		struct s3c_hwmon_chcfg *cfg = pdata->in[i];
be4c23c93   Ben Dooks   hwmon: (s3c-hwmon...
335
336
  
  		if (!cfg)
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
337
  			continue;
be4c23c93   Ben Dooks   hwmon: (s3c-hwmon...
338
  		if (cfg->mult >= 0x10000)
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
339
340
341
342
  			dev_warn(&dev->dev,
  				 "channel %d multiplier too large
  ",
  				 i);
6d905e67c   Ben Dooks   hwmon: (s3c-hwmon...
343
  		if (cfg->div == 0) {
be4c23c93   Ben Dooks   hwmon: (s3c-hwmon...
344
345
346
347
  			dev_err(&dev->dev, "channel %d divider zero
  ", i);
  			continue;
  		}
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
  		ret = s3c_hwmon_create_attr(&dev->dev, pdata->in[i],
  					    &hwmon->attrs[i], i);
  		if (ret) {
  			dev_err(&dev->dev,
  					"error creating channel %d
  ", i);
  
  			for (i--; i >= 0; i--)
  				s3c_hwmon_remove_attr(&dev->dev,
  							      &hwmon->attrs[i]);
  
  			goto err_hwmon_register;
  		}
  	}
  
  	return 0;
  
   err_hwmon_register:
  	hwmon_device_unregister(hwmon->hwmon_dev);
  
   err_raw_attribute:
  	s3c_hwmon_remove_raw(&dev->dev);
  
   err_registered:
  	s3c_adc_release(hwmon->client);
  
   err_mem:
  	kfree(hwmon);
  	return ret;
  }
  
  static int __devexit s3c_hwmon_remove(struct platform_device *dev)
  {
  	struct s3c_hwmon *hwmon = platform_get_drvdata(dev);
  	int i;
  
  	s3c_hwmon_remove_raw(&dev->dev);
  
  	for (i = 0; i < ARRAY_SIZE(hwmon->attrs); i++)
  		s3c_hwmon_remove_attr(&dev->dev, &hwmon->attrs[i]);
  
  	hwmon_device_unregister(hwmon->hwmon_dev);
  	s3c_adc_release(hwmon->client);
  
  	return 0;
  }
  
  static struct platform_driver s3c_hwmon_driver = {
  	.driver	= {
  		.name		= "s3c-hwmon",
  		.owner		= THIS_MODULE,
  	},
  	.probe		= s3c_hwmon_probe,
  	.remove		= __devexit_p(s3c_hwmon_remove),
  };
25a236a5d   Axel Lin   hwmon: convert dr...
403
  module_platform_driver(s3c_hwmon_driver);
bff78650a   Ben Dooks   ARM: HWMON: S3C24...
404
405
406
407
408
  
  MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  MODULE_DESCRIPTION("S3C ADC HWMon driver");
  MODULE_LICENSE("GPL v2");
  MODULE_ALIAS("platform:s3c-hwmon");