blob: 39888af6d33d14355df97a011ffd9354f4b95bec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Evgeniy Polyakov77859252005-05-20 22:33:25 +04002 * w1.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
Evgeniy Polyakov77859252005-05-20 22:33:25 +04005 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <linux/delay.h>
23#include <linux/kernel.h>
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/list.h>
27#include <linux/interrupt.h>
28#include <linux/spinlock.h>
29#include <linux/timer.h>
30#include <linux/device.h>
31#include <linux/slab.h>
32#include <linux/sched.h>
33
34#include <asm/atomic.h>
35
36#include "w1.h"
37#include "w1_io.h"
38#include "w1_log.h"
39#include "w1_int.h"
40#include "w1_family.h"
41#include "w1_netlink.h"
42
43MODULE_LICENSE("GPL");
44MODULE_AUTHOR("Evgeniy Polyakov <johnpol@2ka.mipt.ru>");
45MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol.");
46
47static int w1_timeout = 10;
48int w1_max_slave_count = 10;
49int w1_max_slave_ttl = 10;
50
51module_param_named(timeout, w1_timeout, int, 0);
52module_param_named(max_slave_count, w1_max_slave_count, int, 0);
53module_param_named(slave_ttl, w1_max_slave_ttl, int, 0);
54
55DEFINE_SPINLOCK(w1_mlock);
56LIST_HEAD(w1_masters);
57
58static pid_t control_thread;
59static int control_needs_exit;
60static DECLARE_COMPLETION(w1_control_complete);
61
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +040062/* stuff for the default family */
63static ssize_t w1_famdefault_read_name(struct device *dev, struct device_attribute *attr, char *buf)
64{
65 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
66 return(sprintf(buf, "%s\n", sl->name));
67}
68static struct w1_family_ops w1_default_fops = {
69 .rname = &w1_famdefault_read_name,
70};
71static struct w1_family w1_default_family = {
72 .fops = &w1_default_fops,
73};
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075static int w1_master_match(struct device *dev, struct device_driver *drv)
76{
77 return 1;
78}
79
80static int w1_master_probe(struct device *dev)
81{
82 return -ENODEV;
83}
84
85static int w1_master_remove(struct device *dev)
86{
87 return 0;
88}
89
90static void w1_master_release(struct device *dev)
91{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +040092 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 complete(&md->dev_released);
94}
95
96static void w1_slave_release(struct device *dev)
97{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +040098 struct w1_slave *sl = dev_to_w1_slave(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 complete(&sl->dev_released);
100}
101
Yani Ioannou060b8842005-05-17 06:44:04 -0400102static ssize_t w1_default_read_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103{
104 return sprintf(buf, "No family registered.\n");
105}
106
107static ssize_t w1_default_read_bin(struct kobject *kobj, char *buf, loff_t off,
108 size_t count)
109{
110 return sprintf(buf, "No family registered.\n");
111}
112
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400113static struct device_attribute w1_slave_attribute =
114 __ATTR(name, S_IRUGO, w1_default_read_name, NULL);
115
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400116static struct bin_attribute w1_slave_bin_attribute = {
117 .attr = {
118 .name = "w1_slave",
119 .mode = S_IRUGO,
120 .owner = THIS_MODULE,
121 },
122 .size = W1_SLAVE_DATA_SIZE,
123 .read = &w1_default_read_bin,
124};
125
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400126static int w1_hotplug(struct device *dev, char **envp, int num_envp, char *buffer, int buffer_size);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128static struct bus_type w1_bus_type = {
129 .name = "w1",
130 .match = w1_master_match,
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400131 .hotplug = w1_hotplug,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132};
133
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400134struct device_driver w1_master_driver = {
135 .name = "w1_master_driver",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .bus = &w1_bus_type,
137 .probe = w1_master_probe,
138 .remove = w1_master_remove,
139};
140
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400141struct device w1_master_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .parent = NULL,
143 .bus = &w1_bus_type,
144 .bus_id = "w1 bus master",
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400145 .driver = &w1_master_driver,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 .release = &w1_master_release
147};
148
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400149struct device_driver w1_slave_driver = {
150 .name = "w1_slave_driver",
151 .bus = &w1_bus_type,
152};
153
154struct device w1_slave_device = {
155 .parent = NULL,
156 .bus = &w1_bus_type,
157 .bus_id = "w1 bus slave",
158 .driver = &w1_slave_driver,
159};
160
Yani Ioannou060b8842005-05-17 06:44:04 -0400161static ssize_t w1_master_attribute_show_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400163 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 if (down_interruptible (&md->mutex))
167 return -EBUSY;
168
169 count = sprintf(buf, "%s\n", md->name);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 up(&md->mutex);
172
173 return count;
174}
175
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400176static ssize_t w1_master_attribute_store_search(struct device * dev,
177 struct device_attribute *attr,
178 const char * buf, size_t count)
179{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400180 struct w1_master *md = dev_to_w1_master(dev);
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400181
182 if (down_interruptible (&md->mutex))
183 return -EBUSY;
184
185 md->search_count = simple_strtol(buf, NULL, 0);
186
187 up(&md->mutex);
188
189 return count;
190}
191
192static ssize_t w1_master_attribute_show_search(struct device *dev,
193 struct device_attribute *attr,
194 char *buf)
195{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400196 struct w1_master *md = dev_to_w1_master(dev);
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400197 ssize_t count;
198
199 if (down_interruptible (&md->mutex))
200 return -EBUSY;
201
202 count = sprintf(buf, "%d\n", md->search_count);
203
204 up(&md->mutex);
205
206 return count;
207}
208
Yani Ioannou060b8842005-05-17 06:44:04 -0400209static ssize_t w1_master_attribute_show_pointer(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400211 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 if (down_interruptible(&md->mutex))
215 return -EBUSY;
216
217 count = sprintf(buf, "0x%p\n", md->bus_master);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 up(&md->mutex);
220 return count;
221}
222
Yani Ioannou060b8842005-05-17 06:44:04 -0400223static ssize_t w1_master_attribute_show_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
225 ssize_t count;
226 count = sprintf(buf, "%d\n", w1_timeout);
227 return count;
228}
229
Yani Ioannou060b8842005-05-17 06:44:04 -0400230static ssize_t w1_master_attribute_show_max_slave_count(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400232 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (down_interruptible(&md->mutex))
236 return -EBUSY;
237
238 count = sprintf(buf, "%d\n", md->max_slave_count);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 up(&md->mutex);
241 return count;
242}
243
Yani Ioannou060b8842005-05-17 06:44:04 -0400244static ssize_t w1_master_attribute_show_attempts(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400246 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (down_interruptible(&md->mutex))
250 return -EBUSY;
251
252 count = sprintf(buf, "%lu\n", md->attempts);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 up(&md->mutex);
255 return count;
256}
257
Yani Ioannou060b8842005-05-17 06:44:04 -0400258static ssize_t w1_master_attribute_show_slave_count(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400260 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 if (down_interruptible(&md->mutex))
264 return -EBUSY;
265
266 count = sprintf(buf, "%d\n", md->slave_count);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400267
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 up(&md->mutex);
269 return count;
270}
271
Yani Ioannou060b8842005-05-17 06:44:04 -0400272static ssize_t w1_master_attribute_show_slaves(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Evgeniy Polyakovdb2d0002005-08-11 17:27:49 +0400274 struct w1_master *md = dev_to_w1_master(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 int c = PAGE_SIZE;
276
277 if (down_interruptible(&md->mutex))
278 return -EBUSY;
279
280 if (md->slave_count == 0)
281 c -= snprintf(buf + PAGE_SIZE - c, c, "not found.\n");
282 else {
283 struct list_head *ent, *n;
284 struct w1_slave *sl;
285
286 list_for_each_safe(ent, n, &md->slist) {
287 sl = list_entry(ent, struct w1_slave, w1_slave_entry);
288
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400289 c -= snprintf(buf + PAGE_SIZE - c, c, "%s\n", sl->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
291 }
292
293 up(&md->mutex);
294
295 return PAGE_SIZE - c;
296}
297
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400298#define W1_MASTER_ATTR_RO(_name, _mode) \
299 struct device_attribute w1_master_attribute_##_name = \
300 __ATTR(w1_master_##_name, _mode, \
301 w1_master_attribute_show_##_name, NULL)
302
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400303#define W1_MASTER_ATTR_RW(_name, _mode) \
304 struct device_attribute w1_master_attribute_##_name = \
305 __ATTR(w1_master_##_name, _mode, \
306 w1_master_attribute_show_##_name, \
307 w1_master_attribute_store_##_name)
308
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400309static W1_MASTER_ATTR_RO(name, S_IRUGO);
310static W1_MASTER_ATTR_RO(slaves, S_IRUGO);
311static W1_MASTER_ATTR_RO(slave_count, S_IRUGO);
312static W1_MASTER_ATTR_RO(max_slave_count, S_IRUGO);
313static W1_MASTER_ATTR_RO(attempts, S_IRUGO);
314static W1_MASTER_ATTR_RO(timeout, S_IRUGO);
315static W1_MASTER_ATTR_RO(pointer, S_IRUGO);
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400316static W1_MASTER_ATTR_RW(search, S_IRUGO | S_IWUGO);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400317
318static struct attribute *w1_master_default_attrs[] = {
319 &w1_master_attribute_name.attr,
320 &w1_master_attribute_slaves.attr,
321 &w1_master_attribute_slave_count.attr,
322 &w1_master_attribute_max_slave_count.attr,
323 &w1_master_attribute_attempts.attr,
324 &w1_master_attribute_timeout.attr,
325 &w1_master_attribute_pointer.attr,
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400326 &w1_master_attribute_search.attr,
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400327 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328};
329
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400330static struct attribute_group w1_master_defattr_group = {
331 .attrs = w1_master_default_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332};
333
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400334int w1_create_master_attributes(struct w1_master *master)
335{
336 return sysfs_create_group(&master->dev.kobj, &w1_master_defattr_group);
337}
338
339void w1_destroy_master_attributes(struct w1_master *master)
340{
341 sysfs_remove_group(&master->dev.kobj, &w1_master_defattr_group);
342}
343
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400344#ifdef CONFIG_HOTPLUG
345static int w1_hotplug(struct device *dev, char **envp, int num_envp, char *buffer, int buffer_size)
346{
347 struct w1_master *md = NULL;
348 struct w1_slave *sl = NULL;
349 char *event_owner, *name;
350 int err, cur_index=0, cur_len=0;
351
352 if (dev->driver == &w1_master_driver) {
353 md = container_of(dev, struct w1_master, dev);
354 event_owner = "master";
355 name = md->name;
356 } else if (dev->driver == &w1_slave_driver) {
357 sl = container_of(dev, struct w1_slave, dev);
358 event_owner = "slave";
359 name = sl->name;
360 } else {
361 dev_dbg(dev, "Unknown hotplug event.\n");
362 return -EINVAL;
363 }
364
365 dev_dbg(dev, "Hotplug event for %s %s, bus_id=%s.\n", event_owner, name, dev->bus_id);
366
367 if (dev->driver != &w1_slave_driver || !sl)
368 return 0;
369
370 err = add_hotplug_env_var(envp, num_envp, &cur_index, buffer, buffer_size, &cur_len, "W1_FID=%02X", sl->reg_num.family);
371 if (err)
372 return err;
373
Evgeniy Polyakov5e8eb852005-08-11 13:45:54 +0400374 err = add_hotplug_env_var(envp, num_envp, &cur_index, buffer, buffer_size, &cur_len, "W1_SLAVE_ID=%024LX", (u64)sl->reg_num.id);
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400375 if (err)
376 return err;
377
378 return 0;
379};
380#else
381static int w1_hotplug(struct device *dev, char **envp, int num_envp, char *buffer, int buffer_size)
382{
383 return 0;
384}
385#endif
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387static int __w1_attach_slave_device(struct w1_slave *sl)
388{
389 int err;
390
391 sl->dev.parent = &sl->master->dev;
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400392 sl->dev.driver = &w1_slave_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 sl->dev.bus = &w1_bus_type;
394 sl->dev.release = &w1_slave_release;
395
396 snprintf(&sl->dev.bus_id[0], sizeof(sl->dev.bus_id),
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400397 "%02x-%012llx",
398 (unsigned int) sl->reg_num.family,
399 (unsigned long long) sl->reg_num.id);
400 snprintf(&sl->name[0], sizeof(sl->name),
401 "%02x-%012llx",
402 (unsigned int) sl->reg_num.family,
403 (unsigned long long) sl->reg_num.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 dev_dbg(&sl->dev, "%s: registering %s.\n", __func__,
406 &sl->dev.bus_id[0]);
407
408 err = device_register(&sl->dev);
409 if (err < 0) {
410 dev_err(&sl->dev,
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400411 "Device registration [%s] failed. err=%d\n",
412 sl->dev.bus_id, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return err;
414 }
415
416 memcpy(&sl->attr_bin, &w1_slave_bin_attribute, sizeof(sl->attr_bin));
417 memcpy(&sl->attr_name, &w1_slave_attribute, sizeof(sl->attr_name));
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 sl->attr_bin.read = sl->family->fops->rbin;
420 sl->attr_name.show = sl->family->fops->rname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 err = device_create_file(&sl->dev, &sl->attr_name);
423 if (err < 0) {
424 dev_err(&sl->dev,
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400425 "sysfs file creation for [%s] failed. err=%d\n",
426 sl->dev.bus_id, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 device_unregister(&sl->dev);
428 return err;
429 }
430
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400431 if ( sl->attr_bin.read ) {
432 err = sysfs_create_bin_file(&sl->dev.kobj, &sl->attr_bin);
433 if (err < 0) {
434 dev_err(&sl->dev,
435 "sysfs file creation for [%s] failed. err=%d\n",
436 sl->dev.bus_id, err);
437 device_remove_file(&sl->dev, &sl->attr_name);
438 device_unregister(&sl->dev);
439 return err;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
442
443 list_add_tail(&sl->w1_slave_entry, &sl->master->slist);
444
445 return 0;
446}
447
448static int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn)
449{
450 struct w1_slave *sl;
451 struct w1_family *f;
452 int err;
453 struct w1_netlink_msg msg;
454
455 sl = kmalloc(sizeof(struct w1_slave), GFP_KERNEL);
456 if (!sl) {
457 dev_err(&dev->dev,
458 "%s: failed to allocate new slave device.\n",
459 __func__);
460 return -ENOMEM;
461 }
462
463 memset(sl, 0, sizeof(*sl));
464
465 sl->owner = THIS_MODULE;
466 sl->master = dev;
467 set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
468
469 memcpy(&sl->reg_num, rn, sizeof(sl->reg_num));
470 atomic_set(&sl->refcnt, 0);
471 init_completion(&sl->dev_released);
472
473 spin_lock(&w1_flock);
474 f = w1_family_registered(rn->family);
475 if (!f) {
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400476 f= &w1_default_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dev_info(&dev->dev, "Family %x for %02x.%012llx.%02x is not registered.\n",
478 rn->family, rn->family,
479 (unsigned long long)rn->id, rn->crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481 __w1_family_get(f);
482 spin_unlock(&w1_flock);
483
484 sl->family = f;
485
486
487 err = __w1_attach_slave_device(sl);
488 if (err < 0) {
489 dev_err(&dev->dev, "%s: Attaching %s failed.\n", __func__,
490 sl->name);
491 w1_family_put(sl->family);
492 kfree(sl);
493 return err;
494 }
495
496 sl->ttl = dev->slave_ttl;
497 dev->slave_count++;
498
499 memcpy(&msg.id.id, rn, sizeof(msg.id.id));
500 msg.type = W1_SLAVE_ADD;
501 w1_netlink_send(dev, &msg);
502
503 return 0;
504}
505
506static void w1_slave_detach(struct w1_slave *sl)
507{
508 struct w1_netlink_msg msg;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 dev_info(&sl->dev, "%s: detaching %s.\n", __func__, sl->name);
511
512 while (atomic_read(&sl->refcnt)) {
513 printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
514 sl->name, atomic_read(&sl->refcnt));
515
516 if (msleep_interruptible(1000))
517 flush_signals(current);
518 }
519
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400520 if ( sl->attr_bin.read ) {
521 sysfs_remove_bin_file (&sl->dev.kobj, &sl->attr_bin);
522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 device_remove_file(&sl->dev, &sl->attr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 device_unregister(&sl->dev);
525 w1_family_put(sl->family);
526
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400527 sl->master->slave_count--;
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 memcpy(&msg.id.id, &sl->reg_num, sizeof(msg.id.id));
530 msg.type = W1_SLAVE_REMOVE;
531 w1_netlink_send(sl->master, &msg);
532}
533
534static struct w1_master *w1_search_master(unsigned long data)
535{
536 struct w1_master *dev;
537 int found = 0;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400538
539 spin_lock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 list_for_each_entry(dev, &w1_masters, w1_master_entry) {
541 if (dev->bus_master->data == data) {
542 found = 1;
543 atomic_inc(&dev->refcnt);
544 break;
545 }
546 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400547 spin_unlock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 return (found)?dev:NULL;
550}
551
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400552void w1_reconnect_slaves(struct w1_family *f)
553{
554 struct w1_master *dev;
555
556 spin_lock_bh(&w1_mlock);
557 list_for_each_entry(dev, &w1_masters, w1_master_entry) {
558 dev_info(&dev->dev, "Reconnecting slaves in %s into new family %02x.\n",
559 dev->name, f->fid);
560 set_bit(W1_MASTER_NEED_RECONNECT, &dev->flags);
561 }
562 spin_unlock_bh(&w1_mlock);
563}
564
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400565static void w1_slave_found(unsigned long data, u64 rn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
567 int slave_count;
568 struct w1_slave *sl;
569 struct list_head *ent;
570 struct w1_reg_num *tmp;
571 int family_found = 0;
572 struct w1_master *dev;
Evgeniy Polyakov0e65f822005-06-30 22:52:38 +0400573 u64 rn_le = cpu_to_le64(rn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 dev = w1_search_master(data);
576 if (!dev) {
577 printk(KERN_ERR "Failed to find w1 master device for data %08lx, it is impossible.\n",
578 data);
579 return;
580 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 tmp = (struct w1_reg_num *) &rn;
583
584 slave_count = 0;
585 list_for_each(ent, &dev->slist) {
586
587 sl = list_entry(ent, struct w1_slave, w1_slave_entry);
588
589 if (sl->reg_num.family == tmp->family &&
590 sl->reg_num.id == tmp->id &&
591 sl->reg_num.crc == tmp->crc) {
592 set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
593 break;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400594 } else if (sl->reg_num.family == tmp->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 family_found = 1;
596 break;
597 }
598
599 slave_count++;
600 }
601
johnpol@2ka.mipt.ru8523ff42005-04-18 21:16:57 -0700602 if (slave_count == dev->slave_count &&
Evgeniy Polyakov0e65f822005-06-30 22:52:38 +0400603 rn && ((rn >> 56) & 0xff) == w1_calc_crc8((u8 *)&rn_le, 7)) {
johnpol@2ka.mipt.ru8523ff42005-04-18 21:16:57 -0700604 w1_attach_slave_device(dev, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 atomic_dec(&dev->refcnt);
608}
609
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400610/**
611 * Performs a ROM Search & registers any devices found.
612 * The 1-wire search is a simple binary tree search.
613 * For each bit of the address, we read two bits and write one bit.
614 * The bit written will put to sleep all devies that don't match that bit.
615 * When the two reads differ, the direction choice is obvious.
616 * When both bits are 0, we must choose a path to take.
617 * When we can scan all 64 bits without having to choose a path, we are done.
618 *
619 * See "Application note 187 1-wire search algorithm" at www.maxim-ic.com
620 *
621 * @dev The master device to search
622 * @cb Function to call when a device is found
623 */
624void w1_search(struct w1_master *dev, w1_slave_found_callback cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400626 u64 last_rn, rn, tmp64;
627 int i, slave_count = 0;
628 int last_zero, last_device;
629 int search_bit, desc_bit;
630 u8 triplet_ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400632 search_bit = 0;
633 rn = last_rn = 0;
634 last_device = 0;
635 last_zero = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 desc_bit = 64;
638
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400639 while ( !last_device && (slave_count++ < dev->max_slave_count) ) {
640 last_rn = rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 rn = 0;
642
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /*
644 * Reset bus and all 1-wire device state machines
645 * so they can respond to our requests.
646 *
647 * Return 0 - device(s) present, 1 - no devices present.
648 */
649 if (w1_reset_bus(dev)) {
Evgeniy Polyakov2da5bf82005-08-12 11:46:22 -0700650 dev_dbg(&dev->dev, "No devices present on the wire.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 break;
652 }
653
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400654 /* Start the search */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 w1_write_8(dev, W1_SEARCH);
656 for (i = 0; i < 64; ++i) {
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400657 /* Determine the direction/search bit */
658 if (i == desc_bit)
659 search_bit = 1; /* took the 0 path last time, so take the 1 path */
660 else if (i > desc_bit)
661 search_bit = 0; /* take the 0 path on the next branch */
662 else
663 search_bit = ((last_rn >> i) & 0x1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400665 /** Read two bits and write one bit */
666 triplet_ret = w1_triplet(dev, search_bit);
667
668 /* quit if no device responded */
669 if ( (triplet_ret & 0x03) == 0x03 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 break;
671
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400672 /* If both directions were valid, and we took the 0 path... */
673 if (triplet_ret == 0)
674 last_zero = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400676 /* extract the direction taken & update the device number */
677 tmp64 = (triplet_ret >> 2);
678 rn |= (tmp64 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400681 if ( (triplet_ret & 0x03) != 0x03 ) {
682 if ( (desc_bit == last_zero) || (last_zero < 0))
683 last_device = 1;
684 desc_bit = last_zero;
685 cb(dev->bus_master->data, rn);
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688}
689
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400690static int w1_control(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400692 struct w1_slave *sl, *sln;
693 struct w1_master *dev, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 int err, have_to_wait = 0;
695
696 daemonize("w1_control");
697 allow_signal(SIGTERM);
698
699 while (!control_needs_exit || have_to_wait) {
700 have_to_wait = 0;
701
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700702 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 msleep_interruptible(w1_timeout * 1000);
704
705 if (signal_pending(current))
706 flush_signals(current);
707
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400708 list_for_each_entry_safe(dev, n, &w1_masters, w1_master_entry) {
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400709 if (!control_needs_exit && !dev->flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 continue;
711 /*
712 * Little race: we can create thread but not set the flag.
713 * Get a chance for external process to set flag up.
714 */
715 if (!dev->initialized) {
716 have_to_wait = 1;
717 continue;
718 }
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 if (control_needs_exit) {
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400721 set_bit(W1_MASTER_NEED_EXIT, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 err = kill_proc(dev->kpid, SIGTERM, 1);
724 if (err)
725 dev_err(&dev->dev,
726 "Failed to send signal to w1 kernel thread %d.\n",
727 dev->kpid);
728 }
729
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400730 if (test_bit(W1_MASTER_NEED_EXIT, &dev->flags)) {
731 wait_for_completion(&dev->dev_exited);
732 spin_lock_bh(&w1_mlock);
733 list_del(&dev->w1_master_entry);
734 spin_unlock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400736 list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) {
737 list_del(&sl->w1_slave_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400739 w1_slave_detach(sl);
740 kfree(sl);
741 }
742 w1_destroy_master_attributes(dev);
743 atomic_dec(&dev->refcnt);
744 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 }
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400746
747 if (test_bit(W1_MASTER_NEED_RECONNECT, &dev->flags)) {
748 dev_info(&dev->dev, "Reconnecting slaves in device %s.\n", dev->name);
749 down(&dev->mutex);
750 list_for_each_entry(sl, &dev->slist, w1_slave_entry) {
751 if (sl->family->fid == W1_FAMILY_DEFAULT) {
752 struct w1_reg_num rn;
753 list_del(&sl->w1_slave_entry);
754 w1_slave_detach(sl);
755
756 memcpy(&rn, &sl->reg_num, sizeof(rn));
757
758 kfree(sl);
759
760 w1_attach_slave_device(dev, &rn);
761 }
762 }
763 clear_bit(W1_MASTER_NEED_RECONNECT, &dev->flags);
764 up(&dev->mutex);
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 }
768
769 complete_and_exit(&w1_control_complete, 0);
770}
771
772int w1_process(void *data)
773{
774 struct w1_master *dev = (struct w1_master *) data;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400775 struct w1_slave *sl, *sln;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
777 daemonize("%s", dev->name);
778 allow_signal(SIGTERM);
779
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400780 while (!test_bit(W1_MASTER_NEED_EXIT, &dev->flags)) {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700781 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 msleep_interruptible(w1_timeout * 1000);
783
784 if (signal_pending(current))
785 flush_signals(current);
786
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400787 if (test_bit(W1_MASTER_NEED_EXIT, &dev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
789
790 if (!dev->initialized)
791 continue;
792
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400793 if (dev->search_count == 0)
794 continue;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (down_interruptible(&dev->mutex))
797 continue;
798
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400799 list_for_each_entry(sl, &dev->slist, w1_slave_entry)
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400800 clear_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 w1_search_devices(dev, w1_slave_found);
803
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400804 list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) {
805 if (!test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags) && !--sl->ttl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 list_del (&sl->w1_slave_entry);
807
808 w1_slave_detach (sl);
809 kfree (sl);
810
811 dev->slave_count--;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400812 } else if (test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 sl->ttl = dev->slave_ttl;
814 }
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400815
816 if (dev->search_count > 0)
817 dev->search_count--;
818
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 up(&dev->mutex);
820 }
821
822 atomic_dec(&dev->refcnt);
823 complete_and_exit(&dev->dev_exited, 0);
824
825 return 0;
826}
827
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400828static int w1_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
830 int retval;
831
832 printk(KERN_INFO "Driver for 1-wire Dallas network protocol.\n");
833
834 retval = bus_register(&w1_bus_type);
835 if (retval) {
836 printk(KERN_ERR "Failed to register bus. err=%d.\n", retval);
837 goto err_out_exit_init;
838 }
839
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400840 retval = driver_register(&w1_master_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 if (retval) {
842 printk(KERN_ERR
843 "Failed to register master driver. err=%d.\n",
844 retval);
845 goto err_out_bus_unregister;
846 }
847
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400848 retval = driver_register(&w1_slave_driver);
849 if (retval) {
850 printk(KERN_ERR
851 "Failed to register master driver. err=%d.\n",
852 retval);
853 goto err_out_master_unregister;
854 }
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 control_thread = kernel_thread(&w1_control, NULL, 0);
857 if (control_thread < 0) {
858 printk(KERN_ERR "Failed to create control thread. err=%d\n",
859 control_thread);
860 retval = control_thread;
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400861 goto err_out_slave_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
864 return 0;
865
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400866err_out_slave_unregister:
867 driver_unregister(&w1_slave_driver);
868
869err_out_master_unregister:
870 driver_unregister(&w1_master_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871
872err_out_bus_unregister:
873 bus_unregister(&w1_bus_type);
874
875err_out_exit_init:
876 return retval;
877}
878
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400879static void w1_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
881 struct w1_master *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400883 list_for_each_entry(dev, &w1_masters, w1_master_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 __w1_remove_master_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 control_needs_exit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 wait_for_completion(&w1_control_complete);
888
Evgeniy Polyakov7f772ed2005-08-11 13:20:07 +0400889 driver_unregister(&w1_slave_driver);
890 driver_unregister(&w1_master_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 bus_unregister(&w1_bus_type);
892}
893
894module_init(w1_init);
895module_exit(w1_fini);