Add linux-next specific files for 20110831
[linux-2.6/next.git] / drivers / w1 / slaves / w1_ds2760.c
blob5754c9a4f58b49be5237ac50b70234779f0b07bd
1 /*
2 * 1-Wire implementation for the ds2760 chip
4 * Copyright © 2004-2005, Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>
6 * Use consistent with the GNU GPL is permitted,
7 * provided that this copyright notice is
8 * preserved in its entirety in all copies and derived works.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/device.h>
15 #include <linux/types.h>
16 #include <linux/platform_device.h>
17 #include <linux/mutex.h>
18 #include <linux/idr.h>
19 #include <linux/gfp.h>
21 #include "../w1.h"
22 #include "../w1_int.h"
23 #include "../w1_family.h"
24 #include "w1_ds2760.h"
26 static int w1_ds2760_io(struct device *dev, char *buf, int addr, size_t count,
27 int io)
29 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
31 if (!dev)
32 return 0;
34 mutex_lock(&sl->master->mutex);
36 if (addr > DS2760_DATA_SIZE || addr < 0) {
37 count = 0;
38 goto out;
40 if (addr + count > DS2760_DATA_SIZE)
41 count = DS2760_DATA_SIZE - addr;
43 if (!w1_reset_select_slave(sl)) {
44 if (!io) {
45 w1_write_8(sl->master, W1_DS2760_READ_DATA);
46 w1_write_8(sl->master, addr);
47 count = w1_read_block(sl->master, buf, count);
48 } else {
49 w1_write_8(sl->master, W1_DS2760_WRITE_DATA);
50 w1_write_8(sl->master, addr);
51 w1_write_block(sl->master, buf, count);
52 /* XXX w1_write_block returns void, not n_written */
56 out:
57 mutex_unlock(&sl->master->mutex);
59 return count;
62 int w1_ds2760_read(struct device *dev, char *buf, int addr, size_t count)
64 return w1_ds2760_io(dev, buf, addr, count, 0);
67 int w1_ds2760_write(struct device *dev, char *buf, int addr, size_t count)
69 return w1_ds2760_io(dev, buf, addr, count, 1);
72 static int w1_ds2760_eeprom_cmd(struct device *dev, int addr, int cmd)
74 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
76 if (!dev)
77 return -EINVAL;
79 mutex_lock(&sl->master->mutex);
81 if (w1_reset_select_slave(sl) == 0) {
82 w1_write_8(sl->master, cmd);
83 w1_write_8(sl->master, addr);
86 mutex_unlock(&sl->master->mutex);
87 return 0;
90 int w1_ds2760_store_eeprom(struct device *dev, int addr)
92 return w1_ds2760_eeprom_cmd(dev, addr, W1_DS2760_COPY_DATA);
95 int w1_ds2760_recall_eeprom(struct device *dev, int addr)
97 return w1_ds2760_eeprom_cmd(dev, addr, W1_DS2760_RECALL_DATA);
100 static ssize_t w1_ds2760_read_bin(struct file *filp, struct kobject *kobj,
101 struct bin_attribute *bin_attr,
102 char *buf, loff_t off, size_t count)
104 struct device *dev = container_of(kobj, struct device, kobj);
105 return w1_ds2760_read(dev, buf, off, count);
108 static struct bin_attribute w1_ds2760_bin_attr = {
109 .attr = {
110 .name = "w1_slave",
111 .mode = S_IRUGO,
113 .size = DS2760_DATA_SIZE,
114 .read = w1_ds2760_read_bin,
117 static DEFINE_IDA(bat_ida);
119 static int w1_ds2760_add_slave(struct w1_slave *sl)
121 int ret;
122 int id;
123 struct platform_device *pdev;
125 id = ida_simple_get(&bat_ida, 0, 0, GFP_KERNEL);
126 if (id < 0) {
127 ret = id;
128 goto noid;
131 pdev = platform_device_alloc("ds2760-battery", id);
132 if (!pdev) {
133 ret = -ENOMEM;
134 goto pdev_alloc_failed;
136 pdev->dev.parent = &sl->dev;
138 ret = platform_device_add(pdev);
139 if (ret)
140 goto pdev_add_failed;
142 ret = sysfs_create_bin_file(&sl->dev.kobj, &w1_ds2760_bin_attr);
143 if (ret)
144 goto bin_attr_failed;
146 dev_set_drvdata(&sl->dev, pdev);
148 goto success;
150 bin_attr_failed:
151 pdev_add_failed:
152 platform_device_unregister(pdev);
153 pdev_alloc_failed:
154 ida_simple_remove(&bat_ida, id);
155 noid:
156 success:
157 return ret;
160 static void w1_ds2760_remove_slave(struct w1_slave *sl)
162 struct platform_device *pdev = dev_get_drvdata(&sl->dev);
163 int id = pdev->id;
165 platform_device_unregister(pdev);
166 ida_simple_remove(&bat_ida, id);
167 sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2760_bin_attr);
170 static struct w1_family_ops w1_ds2760_fops = {
171 .add_slave = w1_ds2760_add_slave,
172 .remove_slave = w1_ds2760_remove_slave,
175 static struct w1_family w1_ds2760_family = {
176 .fid = W1_FAMILY_DS2760,
177 .fops = &w1_ds2760_fops,
180 static int __init w1_ds2760_init(void)
182 printk(KERN_INFO "1-Wire driver for the DS2760 battery monitor "
183 " chip - (c) 2004-2005, Szabolcs Gyurko\n");
184 ida_init(&bat_ida);
185 return w1_register_family(&w1_ds2760_family);
188 static void __exit w1_ds2760_exit(void)
190 w1_unregister_family(&w1_ds2760_family);
191 ida_destroy(&bat_ida);
194 EXPORT_SYMBOL(w1_ds2760_read);
195 EXPORT_SYMBOL(w1_ds2760_write);
196 EXPORT_SYMBOL(w1_ds2760_store_eeprom);
197 EXPORT_SYMBOL(w1_ds2760_recall_eeprom);
199 module_init(w1_ds2760_init);
200 module_exit(w1_ds2760_exit);
202 MODULE_LICENSE("GPL");
203 MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>");
204 MODULE_DESCRIPTION("1-wire Driver Dallas 2760 battery monitor chip");