Linux 3.11-rc3
[cris-mirror.git] / drivers / w1 / slaves / w1_ds2780.c
blob0cd7a27b5d6b508d05bca2a7ace486308f412012
1 /*
2 * 1-Wire implementation for the ds2780 chip
4 * Copyright (C) 2010 Indesign, LLC
6 * Author: Clifton Barnes <cabarnes@indesign-llc.com>
8 * Based on w1-ds2760 driver
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/device.h>
19 #include <linux/types.h>
20 #include <linux/platform_device.h>
21 #include <linux/mutex.h>
22 #include <linux/idr.h>
24 #include "../w1.h"
25 #include "../w1_int.h"
26 #include "../w1_family.h"
27 #include "w1_ds2780.h"
29 static int w1_ds2780_do_io(struct device *dev, char *buf, int addr,
30 size_t count, int io)
32 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
34 if (addr > DS2780_DATA_SIZE || addr < 0)
35 return 0;
37 count = min_t(int, count, DS2780_DATA_SIZE - addr);
39 if (w1_reset_select_slave(sl) == 0) {
40 if (io) {
41 w1_write_8(sl->master, W1_DS2780_WRITE_DATA);
42 w1_write_8(sl->master, addr);
43 w1_write_block(sl->master, buf, count);
44 } else {
45 w1_write_8(sl->master, W1_DS2780_READ_DATA);
46 w1_write_8(sl->master, addr);
47 count = w1_read_block(sl->master, buf, count);
51 return count;
54 int w1_ds2780_io(struct device *dev, char *buf, int addr, size_t count,
55 int io)
57 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
58 int ret;
60 if (!dev)
61 return -ENODEV;
63 mutex_lock(&sl->master->bus_mutex);
65 ret = w1_ds2780_do_io(dev, buf, addr, count, io);
67 mutex_unlock(&sl->master->bus_mutex);
69 return ret;
71 EXPORT_SYMBOL(w1_ds2780_io);
73 int w1_ds2780_eeprom_cmd(struct device *dev, int addr, int cmd)
75 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
77 if (!dev)
78 return -EINVAL;
80 mutex_lock(&sl->master->bus_mutex);
82 if (w1_reset_select_slave(sl) == 0) {
83 w1_write_8(sl->master, cmd);
84 w1_write_8(sl->master, addr);
87 mutex_unlock(&sl->master->bus_mutex);
88 return 0;
90 EXPORT_SYMBOL(w1_ds2780_eeprom_cmd);
92 static ssize_t w1_ds2780_read_bin(struct file *filp,
93 struct kobject *kobj,
94 struct bin_attribute *bin_attr,
95 char *buf, loff_t off, size_t count)
97 struct device *dev = container_of(kobj, struct device, kobj);
98 return w1_ds2780_io(dev, buf, off, count, 0);
101 static struct bin_attribute w1_ds2780_bin_attr = {
102 .attr = {
103 .name = "w1_slave",
104 .mode = S_IRUGO,
106 .size = DS2780_DATA_SIZE,
107 .read = w1_ds2780_read_bin,
110 static DEFINE_IDA(bat_ida);
112 static int w1_ds2780_add_slave(struct w1_slave *sl)
114 int ret;
115 int id;
116 struct platform_device *pdev;
118 id = ida_simple_get(&bat_ida, 0, 0, GFP_KERNEL);
119 if (id < 0) {
120 ret = id;
121 goto noid;
124 pdev = platform_device_alloc("ds2780-battery", id);
125 if (!pdev) {
126 ret = -ENOMEM;
127 goto pdev_alloc_failed;
129 pdev->dev.parent = &sl->dev;
131 ret = platform_device_add(pdev);
132 if (ret)
133 goto pdev_add_failed;
135 ret = sysfs_create_bin_file(&sl->dev.kobj, &w1_ds2780_bin_attr);
136 if (ret)
137 goto bin_attr_failed;
139 dev_set_drvdata(&sl->dev, pdev);
141 return 0;
143 bin_attr_failed:
144 platform_device_del(pdev);
145 pdev_add_failed:
146 platform_device_put(pdev);
147 pdev_alloc_failed:
148 ida_simple_remove(&bat_ida, id);
149 noid:
150 return ret;
153 static void w1_ds2780_remove_slave(struct w1_slave *sl)
155 struct platform_device *pdev = dev_get_drvdata(&sl->dev);
156 int id = pdev->id;
158 platform_device_unregister(pdev);
159 ida_simple_remove(&bat_ida, id);
160 sysfs_remove_bin_file(&sl->dev.kobj, &w1_ds2780_bin_attr);
163 static struct w1_family_ops w1_ds2780_fops = {
164 .add_slave = w1_ds2780_add_slave,
165 .remove_slave = w1_ds2780_remove_slave,
168 static struct w1_family w1_ds2780_family = {
169 .fid = W1_FAMILY_DS2780,
170 .fops = &w1_ds2780_fops,
173 static int __init w1_ds2780_init(void)
175 ida_init(&bat_ida);
176 return w1_register_family(&w1_ds2780_family);
179 static void __exit w1_ds2780_exit(void)
181 w1_unregister_family(&w1_ds2780_family);
182 ida_destroy(&bat_ida);
185 module_init(w1_ds2780_init);
186 module_exit(w1_ds2780_exit);
188 MODULE_LICENSE("GPL");
189 MODULE_AUTHOR("Clifton Barnes <cabarnes@indesign-llc.com>");
190 MODULE_DESCRIPTION("1-wire Driver for Maxim/Dallas DS2780 Stand-Alone Fuel Gauge IC");
191 MODULE_ALIAS("w1-family-" __stringify(W1_FAMILY_DS2780));