Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Copyright (C) 2001-2004 Aurelien Jarno <aurelien@aurel32.net> |
| 3 | Ported to Linux 2.6 by Aurelien Jarno <aurelien@aurel32.net> with |
| 4 | the help of Jean Delvare <khali@linux-fr.org> |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2 of the License, or |
| 9 | (at your option) any later version. |
| 10 | |
| 11 | This program is distributed in the hope that it will be useful, |
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | GNU General Public License for more details. |
| 15 | |
| 16 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/slab.h> |
| 24 | #include <linux/i2c.h> |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 25 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | /* Addresses to scan */ |
Jean Delvare | 2cdddeb | 2008-01-27 18:14:47 +0100 | [diff] [blame] | 28 | static const unsigned short normal_i2c[] = { 0x48, 0x49, 0x4a, 0x4b, 0x4c, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | 0x4d, 0x4e, 0x4f, I2C_CLIENT_END }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | /* Insmod parameters */ |
Jean Delvare | f4b5026 | 2005-07-31 21:49:03 +0200 | [diff] [blame] | 32 | I2C_CLIENT_INSMOD_1(pcf8591); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | static int input_mode; |
| 35 | module_param(input_mode, int, 0); |
| 36 | MODULE_PARM_DESC(input_mode, |
| 37 | "Analog input mode:\n" |
| 38 | " 0 = four single ended inputs\n" |
| 39 | " 1 = three differential inputs\n" |
| 40 | " 2 = single ended and differential mixed\n" |
| 41 | " 3 = two differential inputs\n"); |
| 42 | |
| 43 | /* The PCF8591 control byte |
| 44 | 7 6 5 4 3 2 1 0 |
| 45 | | 0 |AOEF| AIP | 0 |AINC| AICH | */ |
| 46 | |
| 47 | /* Analog Output Enable Flag (analog output active if 1) */ |
| 48 | #define PCF8591_CONTROL_AOEF 0x40 |
| 49 | |
| 50 | /* Analog Input Programming |
| 51 | 0x00 = four single ended inputs |
| 52 | 0x10 = three differential inputs |
| 53 | 0x20 = single ended and differential mixed |
| 54 | 0x30 = two differential inputs */ |
| 55 | #define PCF8591_CONTROL_AIP_MASK 0x30 |
| 56 | |
| 57 | /* Autoincrement Flag (switch on if 1) */ |
| 58 | #define PCF8591_CONTROL_AINC 0x04 |
| 59 | |
| 60 | /* Channel selection |
| 61 | 0x00 = channel 0 |
| 62 | 0x01 = channel 1 |
| 63 | 0x02 = channel 2 |
| 64 | 0x03 = channel 3 */ |
| 65 | #define PCF8591_CONTROL_AICH_MASK 0x03 |
| 66 | |
| 67 | /* Initial values */ |
| 68 | #define PCF8591_INIT_CONTROL ((input_mode << 4) | PCF8591_CONTROL_AOEF) |
| 69 | #define PCF8591_INIT_AOUT 0 /* DAC out = 0 */ |
| 70 | |
| 71 | /* Conversions */ |
| 72 | #define REG_TO_SIGNED(reg) (((reg) & 0x80)?((reg) - 256):(reg)) |
| 73 | |
| 74 | struct pcf8591_data { |
| 75 | struct i2c_client client; |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 76 | struct mutex update_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | u8 control; |
| 79 | u8 aout; |
| 80 | }; |
| 81 | |
| 82 | static int pcf8591_attach_adapter(struct i2c_adapter *adapter); |
| 83 | static int pcf8591_detect(struct i2c_adapter *adapter, int address, int kind); |
| 84 | static int pcf8591_detach_client(struct i2c_client *client); |
| 85 | static void pcf8591_init_client(struct i2c_client *client); |
| 86 | static int pcf8591_read_channel(struct device *dev, int channel); |
| 87 | |
| 88 | /* This is the driver that will be inserted */ |
| 89 | static struct i2c_driver pcf8591_driver = { |
Laurent Riffard | a9718b0 | 2005-11-26 20:36:00 +0100 | [diff] [blame] | 90 | .driver = { |
Laurent Riffard | a9718b0 | 2005-11-26 20:36:00 +0100 | [diff] [blame] | 91 | .name = "pcf8591", |
| 92 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | .attach_adapter = pcf8591_attach_adapter, |
| 94 | .detach_client = pcf8591_detach_client, |
| 95 | }; |
| 96 | |
| 97 | /* following are the sysfs callback functions */ |
| 98 | #define show_in_channel(channel) \ |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 99 | static ssize_t show_in##channel##_input(struct device *dev, struct device_attribute *attr, char *buf) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { \ |
| 101 | return sprintf(buf, "%d\n", pcf8591_read_channel(dev, channel));\ |
| 102 | } \ |
| 103 | static DEVICE_ATTR(in##channel##_input, S_IRUGO, \ |
| 104 | show_in##channel##_input, NULL); |
| 105 | |
| 106 | show_in_channel(0); |
| 107 | show_in_channel(1); |
| 108 | show_in_channel(2); |
| 109 | show_in_channel(3); |
| 110 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 111 | static ssize_t show_out0_ouput(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | { |
| 113 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 114 | return sprintf(buf, "%d\n", data->aout * 10); |
| 115 | } |
| 116 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 117 | static ssize_t set_out0_output(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | { |
| 119 | unsigned int value; |
| 120 | struct i2c_client *client = to_i2c_client(dev); |
| 121 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 122 | if ((value = (simple_strtoul(buf, NULL, 10) + 5) / 10) <= 255) { |
| 123 | data->aout = value; |
| 124 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
| 125 | return count; |
| 126 | } |
| 127 | return -EINVAL; |
| 128 | } |
| 129 | |
| 130 | static DEVICE_ATTR(out0_output, S_IWUSR | S_IRUGO, |
| 131 | show_out0_ouput, set_out0_output); |
| 132 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 133 | static ssize_t show_out0_enable(struct device *dev, struct device_attribute *attr, char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
| 135 | struct pcf8591_data *data = i2c_get_clientdata(to_i2c_client(dev)); |
| 136 | return sprintf(buf, "%u\n", !(!(data->control & PCF8591_CONTROL_AOEF))); |
| 137 | } |
| 138 | |
Yani Ioannou | a5099cf | 2005-05-17 06:42:25 -0400 | [diff] [blame] | 139 | static ssize_t set_out0_enable(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 140 | { |
| 141 | struct i2c_client *client = to_i2c_client(dev); |
| 142 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 143 | unsigned long val = simple_strtoul(buf, NULL, 10); |
| 144 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 145 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | if (val) |
| 147 | data->control |= PCF8591_CONTROL_AOEF; |
| 148 | else |
| 149 | data->control &= ~PCF8591_CONTROL_AOEF; |
| 150 | i2c_smbus_write_byte(client, data->control); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 151 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | return count; |
| 153 | } |
| 154 | |
| 155 | static DEVICE_ATTR(out0_enable, S_IWUSR | S_IRUGO, |
| 156 | show_out0_enable, set_out0_enable); |
| 157 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 158 | static struct attribute *pcf8591_attributes[] = { |
| 159 | &dev_attr_out0_enable.attr, |
| 160 | &dev_attr_out0_output.attr, |
| 161 | &dev_attr_in0_input.attr, |
| 162 | &dev_attr_in1_input.attr, |
| 163 | NULL |
| 164 | }; |
| 165 | |
| 166 | static const struct attribute_group pcf8591_attr_group = { |
| 167 | .attrs = pcf8591_attributes, |
| 168 | }; |
| 169 | |
| 170 | static struct attribute *pcf8591_attributes_opt[] = { |
| 171 | &dev_attr_in2_input.attr, |
| 172 | &dev_attr_in3_input.attr, |
| 173 | NULL |
| 174 | }; |
| 175 | |
| 176 | static const struct attribute_group pcf8591_attr_group_opt = { |
| 177 | .attrs = pcf8591_attributes_opt, |
| 178 | }; |
| 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | /* |
| 181 | * Real code |
| 182 | */ |
| 183 | static int pcf8591_attach_adapter(struct i2c_adapter *adapter) |
| 184 | { |
Jean Delvare | 2ed2dc3 | 2005-07-31 21:42:02 +0200 | [diff] [blame] | 185 | return i2c_probe(adapter, &addr_data, pcf8591_detect); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | } |
| 187 | |
Jean Delvare | 2ed2dc3 | 2005-07-31 21:42:02 +0200 | [diff] [blame] | 188 | /* This function is called by i2c_probe */ |
Ben Dooks | 6344a8ec | 2005-10-26 21:09:41 +0200 | [diff] [blame] | 189 | static int pcf8591_detect(struct i2c_adapter *adapter, int address, int kind) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | { |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 191 | struct i2c_client *client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | struct pcf8591_data *data; |
| 193 | int err = 0; |
| 194 | |
| 195 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE |
| 196 | | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) |
| 197 | goto exit; |
| 198 | |
| 199 | /* OK. For now, we presume we have a valid client. We now create the |
| 200 | client structure, even though we cannot fill it completely yet. */ |
Deepak Saxena | 5263ebb | 2005-10-17 23:09:43 +0200 | [diff] [blame] | 201 | if (!(data = kzalloc(sizeof(struct pcf8591_data), GFP_KERNEL))) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | err = -ENOMEM; |
| 203 | goto exit; |
| 204 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 206 | client = &data->client; |
| 207 | i2c_set_clientdata(client, data); |
| 208 | client->addr = address; |
| 209 | client->adapter = adapter; |
| 210 | client->driver = &pcf8591_driver; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
| 212 | /* Now, we would do the remaining detection. But the PCF8591 is plainly |
| 213 | impossible to detect! Stupid chip. */ |
| 214 | |
| 215 | /* Determine the chip type - only one kind supported! */ |
| 216 | if (kind <= 0) |
| 217 | kind = pcf8591; |
| 218 | |
| 219 | /* Fill in the remaining client fields and put it into the global |
| 220 | list */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 221 | strlcpy(client->name, "pcf8591", I2C_NAME_SIZE); |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 222 | mutex_init(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
| 224 | /* Tell the I2C layer a new client has arrived */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 225 | if ((err = i2c_attach_client(client))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | goto exit_kfree; |
| 227 | |
| 228 | /* Initialize the PCF8591 chip */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 229 | pcf8591_init_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | /* Register sysfs hooks */ |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 232 | err = sysfs_create_group(&client->dev.kobj, &pcf8591_attr_group); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 233 | if (err) |
| 234 | goto exit_detach; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | |
| 236 | /* Register input2 if not in "two differential inputs" mode */ |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 237 | if (input_mode != 3) { |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 238 | if ((err = device_create_file(&client->dev, |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 239 | &dev_attr_in2_input))) |
| 240 | goto exit_sysfs_remove; |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 243 | /* Register input3 only in "four single ended inputs" mode */ |
| 244 | if (input_mode == 0) { |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 245 | if ((err = device_create_file(&client->dev, |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 246 | &dev_attr_in3_input))) |
| 247 | goto exit_sysfs_remove; |
| 248 | } |
| 249 | |
| 250 | return 0; |
| 251 | |
| 252 | exit_sysfs_remove: |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 253 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 254 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 255 | exit_detach: |
Jean Delvare | f741f67 | 2008-07-14 22:38:36 +0200 | [diff] [blame] | 256 | i2c_detach_client(client); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | exit_kfree: |
| 258 | kfree(data); |
| 259 | exit: |
| 260 | return err; |
| 261 | } |
| 262 | |
| 263 | static int pcf8591_detach_client(struct i2c_client *client) |
| 264 | { |
| 265 | int err; |
| 266 | |
Jean Delvare | 7d9db67 | 2006-09-03 22:20:24 +0200 | [diff] [blame] | 267 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group_opt); |
| 268 | sysfs_remove_group(&client->dev.kobj, &pcf8591_attr_group); |
| 269 | |
Jean Delvare | 7bef559 | 2005-07-27 22:14:49 +0200 | [diff] [blame] | 270 | if ((err = i2c_detach_client(client))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | kfree(i2c_get_clientdata(client)); |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /* Called when we have found a new PCF8591. */ |
| 278 | static void pcf8591_init_client(struct i2c_client *client) |
| 279 | { |
| 280 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 281 | data->control = PCF8591_INIT_CONTROL; |
| 282 | data->aout = PCF8591_INIT_AOUT; |
| 283 | |
| 284 | i2c_smbus_write_byte_data(client, data->control, data->aout); |
| 285 | |
| 286 | /* The first byte transmitted contains the conversion code of the |
| 287 | previous read cycle. FLUSH IT! */ |
| 288 | i2c_smbus_read_byte(client); |
| 289 | } |
| 290 | |
| 291 | static int pcf8591_read_channel(struct device *dev, int channel) |
| 292 | { |
| 293 | u8 value; |
| 294 | struct i2c_client *client = to_i2c_client(dev); |
| 295 | struct pcf8591_data *data = i2c_get_clientdata(client); |
| 296 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 297 | mutex_lock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | |
| 299 | if ((data->control & PCF8591_CONTROL_AICH_MASK) != channel) { |
| 300 | data->control = (data->control & ~PCF8591_CONTROL_AICH_MASK) |
| 301 | | channel; |
| 302 | i2c_smbus_write_byte(client, data->control); |
| 303 | |
| 304 | /* The first byte transmitted contains the conversion code of |
| 305 | the previous read cycle. FLUSH IT! */ |
| 306 | i2c_smbus_read_byte(client); |
| 307 | } |
| 308 | value = i2c_smbus_read_byte(client); |
| 309 | |
Ingo Molnar | 5c085d3 | 2006-01-18 23:16:04 +0100 | [diff] [blame] | 310 | mutex_unlock(&data->update_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
| 312 | if ((channel == 2 && input_mode == 2) || |
| 313 | (channel != 3 && (input_mode == 1 || input_mode == 3))) |
| 314 | return (10 * REG_TO_SIGNED(value)); |
| 315 | else |
| 316 | return (10 * value); |
| 317 | } |
| 318 | |
| 319 | static int __init pcf8591_init(void) |
| 320 | { |
| 321 | if (input_mode < 0 || input_mode > 3) { |
| 322 | printk(KERN_WARNING "pcf8591: invalid input_mode (%d)\n", |
| 323 | input_mode); |
| 324 | input_mode = 0; |
| 325 | } |
| 326 | return i2c_add_driver(&pcf8591_driver); |
| 327 | } |
| 328 | |
| 329 | static void __exit pcf8591_exit(void) |
| 330 | { |
| 331 | i2c_del_driver(&pcf8591_driver); |
| 332 | } |
| 333 | |
| 334 | MODULE_AUTHOR("Aurelien Jarno <aurelien@aurel32.net>"); |
| 335 | MODULE_DESCRIPTION("PCF8591 driver"); |
| 336 | MODULE_LICENSE("GPL"); |
| 337 | |
| 338 | module_init(pcf8591_init); |
| 339 | module_exit(pcf8591_exit); |