blob: b7a3a292123d1338aec1cfa2c7aef9f449161529 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Guenter Roeck57256082012-01-14 21:57:29 -08003 * Copyright (C) 2001-2004 Aurelien Jarno <aurelien@aurel32.net>
4 * Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with
Jean Delvare7c81c60f2014-01-29 20:40:08 +01005 * the help of Jean Delvare <jdelvare@suse.de>
Guenter Roeck57256082012-01-14 21:57:29 -08006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Joe Perches2caec132010-10-20 06:51:45 +00008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/module.h>
11#include <linux/init.h>
12#include <linux/slab.h>
13#include <linux/i2c.h>
Ingo Molnar5c085d32006-01-18 23:16:04 +010014#include <linux/mutex.h>
Jean Delvare4275fcd2010-10-28 20:31:49 +020015#include <linux/err.h>
16#include <linux/hwmon.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Linus Torvalds1da177e2005-04-16 15:20:36 -070018/* Insmod parameters */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
20static int input_mode;
21module_param(input_mode, int, 0);
22MODULE_PARM_DESC(input_mode,
23 "Analog input mode:\n"
24 " 0 = four single ended inputs\n"
25 " 1 = three differential inputs\n"
26 " 2 = single ended and differential mixed\n"
27 " 3 = two differential inputs\n");
28
Guenter Roeck57256082012-01-14 21:57:29 -080029/*
30 * The PCF8591 control byte
31 * 7 6 5 4 3 2 1 0
32 * | 0 |AOEF| AIP | 0 |AINC| AICH |
33 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* Analog Output Enable Flag (analog output active if 1) */
36#define PCF8591_CONTROL_AOEF 0x40
Jean Delvarefb4504f2009-03-30 21:46:43 +020037
Guenter Roeck57256082012-01-14 21:57:29 -080038/*
39 * Analog Input Programming
40 * 0x00 = four single ended inputs
41 * 0x10 = three differential inputs
42 * 0x20 = single ended and differential mixed
43 * 0x30 = two differential inputs
44 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#define PCF8591_CONTROL_AIP_MASK 0x30
46
47/* Autoincrement Flag (switch on if 1) */
48#define PCF8591_CONTROL_AINC 0x04
49
Guenter Roeck57256082012-01-14 21:57:29 -080050/*
51 * Channel selection
52 * 0x00 = channel 0
53 * 0x01 = channel 1
54 * 0x02 = channel 2
55 * 0x03 = channel 3
56 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#define PCF8591_CONTROL_AICH_MASK 0x03
58
59/* Initial values */
60#define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF)
61#define PCF8591_INIT_AOUT 0 /* DAC out = 0 */
62
63/* Conversions */
Guenter Roeck57256082012-01-14 21:57:29 -080064#define REG_TO_SIGNED(reg) (((reg) & 0x80) ? ((reg) - 256) : (reg))
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66struct pcf8591_data {
Jean Delvare4275fcd2010-10-28 20:31:49 +020067 struct device *hwmon_dev;
Ingo Molnar5c085d32006-01-18 23:16:04 +010068 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 u8 control;
71 u8 aout;
72};
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074static void pcf8591_init_client(struct i2c_client *client);
75static int pcf8591_read_channel(struct device *dev, int channel);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077/* following are the sysfs callback functions */
78#define show_in_channel(channel) \
Guenter Roeck57256082012-01-14 21:57:29 -080079static ssize_t show_in##channel##_input(struct device *dev, \
80 struct device_attribute *attr, \
81 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{ \
83 return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\
84} \
85static DEVICE_ATTR(in##channel##_input, S_IRUGO, \
86 show_in##channel##_input, NULL);
87
88show_in_channel(0);
89show_in_channel(1);
90show_in_channel(2);
91show_in_channel(3);
92
Julia Lawall309c6752016-12-22 13:05:03 +010093static ssize_t out0_output_show(struct device *dev,
94 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
96 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
97 return sprintf(buf, "%d\n", data->aout * 10);
98}
99
Julia Lawall309c6752016-12-22 13:05:03 +0100100static ssize_t out0_output_store(struct device *dev,
101 struct device_attribute *attr,
102 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
Guenter Roeck57256082012-01-14 21:57:29 -0800104 unsigned long val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 struct i2c_client *client = to_i2c_client(dev);
106 struct pcf8591_data *data = i2c_get_clientdata(client);
Guenter Roeck57256082012-01-14 21:57:29 -0800107 int err;
108
109 err = kstrtoul(buf, 10, &val);
110 if (err)
111 return err;
112
113 val /= 10;
114 if (val > 255)
115 return -EINVAL;
116
117 data->aout = val;
118 i2c_smbus_write_byte_data(client, data->control, data->aout);
119 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Julia Lawall309c6752016-12-22 13:05:03 +0100122static DEVICE_ATTR_RW(out0_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Julia Lawall309c6752016-12-22 13:05:03 +0100124static ssize_t out0_enable_show(struct device *dev,
Guenter Roeck57256082012-01-14 21:57:29 -0800125 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev));
128 return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF)));
129}
130
Julia Lawall309c6752016-12-22 13:05:03 +0100131static ssize_t out0_enable_store(struct device *dev,
132 struct device_attribute *attr,
133 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
135 struct i2c_client *client = to_i2c_client(dev);
136 struct pcf8591_data *data = i2c_get_clientdata(client);
Guenter Roeck57256082012-01-14 21:57:29 -0800137 unsigned long val;
138 int err;
139
140 err = kstrtoul(buf, 10, &val);
141 if (err)
142 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Ingo Molnar5c085d32006-01-18 23:16:04 +0100144 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (val)
146 data->control |= PCF8591_CONTROL_AOEF;
147 else
148 data->control &= ~PCF8591_CONTROL_AOEF;
149 i2c_smbus_write_byte(client, data->control);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100150 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 return count;
152}
153
Julia Lawall309c6752016-12-22 13:05:03 +0100154static DEVICE_ATTR_RW(out0_enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Jean Delvare7d9db672006-09-03 22:20:24 +0200156static struct attribute *pcf8591_attributes[] = {
157 &dev_attr_out0_enable.attr,
158 &dev_attr_out0_output.attr,
159 &dev_attr_in0_input.attr,
160 &dev_attr_in1_input.attr,
161 NULL
162};
163
164static const struct attribute_group pcf8591_attr_group = {
165 .attrs = pcf8591_attributes,
166};
167
168static struct attribute *pcf8591_attributes_opt[] = {
169 &dev_attr_in2_input.attr,
170 &dev_attr_in3_input.attr,
171 NULL
172};
173
174static const struct attribute_group pcf8591_attr_group_opt = {
175 .attrs = pcf8591_attributes_opt,
176};
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178/*
179 * Real code
180 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200182static int pcf8591_probe(struct i2c_client *client,
183 const struct i2c_device_id *id)
184{
185 struct pcf8591_data *data;
186 int err;
187
Guenter Roeck60c2b562012-06-02 11:20:20 -0700188 data = devm_kzalloc(&client->dev, sizeof(struct pcf8591_data),
189 GFP_KERNEL);
190 if (!data)
191 return -ENOMEM;
Jean Delvarefb4504f2009-03-30 21:46:43 +0200192
Jean Delvaref741f672008-07-14 22:38:36 +0200193 i2c_set_clientdata(client, data);
Ingo Molnar5c085d32006-01-18 23:16:04 +0100194 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 /* Initialize the PCF8591 chip */
Jean Delvaref741f672008-07-14 22:38:36 +0200197 pcf8591_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 /* Register sysfs hooks */
Jean Delvaref741f672008-07-14 22:38:36 +0200200 err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group);
Jean Delvare7d9db672006-09-03 22:20:24 +0200201 if (err)
Guenter Roeck60c2b562012-06-02 11:20:20 -0700202 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /* Register input2 if not in "two differential inputs" mode */
Jean Delvare7d9db672006-09-03 22:20:24 +0200205 if (input_mode != 3) {
Guenter Roeck57256082012-01-14 21:57:29 -0800206 err = device_create_file(&client->dev, &dev_attr_in2_input);
207 if (err)
Jean Delvare7d9db672006-09-03 22:20:24 +0200208 goto exit_sysfs_remove;
209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Jean Delvare7d9db672006-09-03 22:20:24 +0200211 /* Register input3 only in "four single ended inputs" mode */
212 if (input_mode == 0) {
Guenter Roeck57256082012-01-14 21:57:29 -0800213 err = device_create_file(&client->dev, &dev_attr_in3_input);
214 if (err)
Jean Delvare7d9db672006-09-03 22:20:24 +0200215 goto exit_sysfs_remove;
216 }
217
Jean Delvare4275fcd2010-10-28 20:31:49 +0200218 data->hwmon_dev = hwmon_device_register(&client->dev);
219 if (IS_ERR(data->hwmon_dev)) {
220 err = PTR_ERR(data->hwmon_dev);
221 goto exit_sysfs_remove;
222 }
223
Jean Delvare7d9db672006-09-03 22:20:24 +0200224 return 0;
225
226exit_sysfs_remove:
Jean Delvaref741f672008-07-14 22:38:36 +0200227 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
228 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 return err;
230}
231
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200232static int pcf8591_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
Jean Delvare4275fcd2010-10-28 20:31:49 +0200234 struct pcf8591_data *data = i2c_get_clientdata(client);
235
236 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare7d9db672006-09-03 22:20:24 +0200237 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt);
238 sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 return 0;
240}
241
242/* Called when we have found a new PCF8591. */
243static void pcf8591_init_client(struct i2c_client *client)
244{
245 struct pcf8591_data *data = i2c_get_clientdata(client);
246 data->control = PCF8591_INIT_CONTROL;
247 data->aout = PCF8591_INIT_AOUT;
248
249 i2c_smbus_write_byte_data(client, data->control, data->aout);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200250
Guenter Roeck57256082012-01-14 21:57:29 -0800251 /*
252 * The first byte transmitted contains the conversion code of the
253 * previous read cycle. FLUSH IT!
254 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 i2c_smbus_read_byte(client);
256}
257
258static int pcf8591_read_channel(struct device *dev, int channel)
259{
260 u8 value;
261 struct i2c_client *client = to_i2c_client(dev);
262 struct pcf8591_data *data = i2c_get_clientdata(client);
263
Ingo Molnar5c085d32006-01-18 23:16:04 +0100264 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) {
267 data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK)
268 | channel;
269 i2c_smbus_write_byte(client, data->control);
Jean Delvarefb4504f2009-03-30 21:46:43 +0200270
Guenter Roeck57256082012-01-14 21:57:29 -0800271 /*
272 * The first byte transmitted contains the conversion code of
273 * the previous read cycle. FLUSH IT!
274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 i2c_smbus_read_byte(client);
276 }
277 value = i2c_smbus_read_byte(client);
278
Ingo Molnar5c085d32006-01-18 23:16:04 +0100279 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if ((channel == 2 && input_mode == 2) ||
282 (channel != 3 && (input_mode == 1 || input_mode == 3)))
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100283 return 10 * REG_TO_SIGNED(value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 else
Frans Meulenbroeks7fe83ad2012-01-05 19:50:18 +0100285 return 10 * value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200288static const struct i2c_device_id pcf8591_id[] = {
289 { "pcf8591", 0 },
290 { }
291};
292MODULE_DEVICE_TABLE(i2c, pcf8591_id);
293
294static struct i2c_driver pcf8591_driver = {
295 .driver = {
296 .name = "pcf8591",
297 },
298 .probe = pcf8591_probe,
299 .remove = pcf8591_remove,
300 .id_table = pcf8591_id,
Jean Delvare8b77e6a2008-07-16 19:30:06 +0200301};
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static int __init pcf8591_init(void)
304{
305 if (input_mode < 0 || input_mode > 3) {
Joe Perches2caec132010-10-20 06:51:45 +0000306 pr_warn("invalid input_mode (%d)\n", input_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 input_mode = 0;
308 }
309 return i2c_add_driver(&pcf8591_driver);
310}
311
312static void __exit pcf8591_exit(void)
313{
314 i2c_del_driver(&pcf8591_driver);
315}
316
317MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>");
318MODULE_DESCRIPTION("PCF8591 driver");
319MODULE_LICENSE("GPL");
320
321module_init(pcf8591_init);
322module_exit(pcf8591_exit);