blob: 0bbf029b1ef1658f99b537fa690a10186275b486 [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{
92 struct w1_master *md = container_of(dev, struct w1_master, dev);
93
94 complete(&md->dev_released);
95}
96
97static void w1_slave_release(struct device *dev)
98{
99 struct w1_slave *sl = container_of(dev, struct w1_slave, dev);
100
101 complete(&sl->dev_released);
102}
103
Yani Ioannou060b8842005-05-17 06:44:04 -0400104static ssize_t w1_default_read_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105{
106 return sprintf(buf, "No family registered.\n");
107}
108
109static ssize_t w1_default_read_bin(struct kobject *kobj, char *buf, loff_t off,
110 size_t count)
111{
112 return sprintf(buf, "No family registered.\n");
113}
114
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400115static struct device_attribute w1_slave_attribute =
116 __ATTR(name, S_IRUGO, w1_default_read_name, NULL);
117
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400118static struct bin_attribute w1_slave_bin_attribute = {
119 .attr = {
120 .name = "w1_slave",
121 .mode = S_IRUGO,
122 .owner = THIS_MODULE,
123 },
124 .size = W1_SLAVE_DATA_SIZE,
125 .read = &w1_default_read_bin,
126};
127
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static struct bus_type w1_bus_type = {
130 .name = "w1",
131 .match = w1_master_match,
132};
133
134struct device_driver w1_driver = {
135 .name = "w1_driver",
136 .bus = &w1_bus_type,
137 .probe = w1_master_probe,
138 .remove = w1_master_remove,
139};
140
141struct device w1_device = {
142 .parent = NULL,
143 .bus = &w1_bus_type,
144 .bus_id = "w1 bus master",
145 .driver = &w1_driver,
146 .release = &w1_master_release
147};
148
Yani Ioannou060b8842005-05-17 06:44:04 -0400149static ssize_t w1_master_attribute_show_name(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150{
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400151 struct w1_master *md = container_of(dev, struct w1_master, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (down_interruptible (&md->mutex))
155 return -EBUSY;
156
157 count = sprintf(buf, "%s\n", md->name);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 up(&md->mutex);
160
161 return count;
162}
163
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400164static ssize_t w1_master_attribute_store_search(struct device * dev,
165 struct device_attribute *attr,
166 const char * buf, size_t count)
167{
168 struct w1_master *md = container_of(dev, struct w1_master, dev);
169
170 if (down_interruptible (&md->mutex))
171 return -EBUSY;
172
173 md->search_count = simple_strtol(buf, NULL, 0);
174
175 up(&md->mutex);
176
177 return count;
178}
179
180static ssize_t w1_master_attribute_show_search(struct device *dev,
181 struct device_attribute *attr,
182 char *buf)
183{
184 struct w1_master *md = container_of(dev, struct w1_master, dev);
185 ssize_t count;
186
187 if (down_interruptible (&md->mutex))
188 return -EBUSY;
189
190 count = sprintf(buf, "%d\n", md->search_count);
191
192 up(&md->mutex);
193
194 return count;
195}
196
Yani Ioannou060b8842005-05-17 06:44:04 -0400197static ssize_t w1_master_attribute_show_pointer(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 struct w1_master *md = container_of(dev, struct w1_master, dev);
200 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (down_interruptible(&md->mutex))
203 return -EBUSY;
204
205 count = sprintf(buf, "0x%p\n", md->bus_master);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 up(&md->mutex);
208 return count;
209}
210
Yani Ioannou060b8842005-05-17 06:44:04 -0400211static ssize_t w1_master_attribute_show_timeout(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 ssize_t count;
214 count = sprintf(buf, "%d\n", w1_timeout);
215 return count;
216}
217
Yani Ioannou060b8842005-05-17 06:44:04 -0400218static 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 -0700219{
220 struct w1_master *md = container_of(dev, struct w1_master, dev);
221 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (down_interruptible(&md->mutex))
224 return -EBUSY;
225
226 count = sprintf(buf, "%d\n", md->max_slave_count);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 up(&md->mutex);
229 return count;
230}
231
Yani Ioannou060b8842005-05-17 06:44:04 -0400232static ssize_t w1_master_attribute_show_attempts(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct w1_master *md = container_of(dev, struct w1_master, dev);
235 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (down_interruptible(&md->mutex))
238 return -EBUSY;
239
240 count = sprintf(buf, "%lu\n", md->attempts);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 up(&md->mutex);
243 return count;
244}
245
Yani Ioannou060b8842005-05-17 06:44:04 -0400246static ssize_t w1_master_attribute_show_slave_count(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 struct w1_master *md = container_of(dev, struct w1_master, dev);
249 ssize_t count;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (down_interruptible(&md->mutex))
252 return -EBUSY;
253
254 count = sprintf(buf, "%d\n", md->slave_count);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 up(&md->mutex);
257 return count;
258}
259
Yani Ioannou060b8842005-05-17 06:44:04 -0400260static ssize_t w1_master_attribute_show_slaves(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
262 struct w1_master *md = container_of(dev, struct w1_master, dev);
263 int c = PAGE_SIZE;
264
265 if (down_interruptible(&md->mutex))
266 return -EBUSY;
267
268 if (md->slave_count == 0)
269 c -= snprintf(buf + PAGE_SIZE - c, c, "not found.\n");
270 else {
271 struct list_head *ent, *n;
272 struct w1_slave *sl;
273
274 list_for_each_safe(ent, n, &md->slist) {
275 sl = list_entry(ent, struct w1_slave, w1_slave_entry);
276
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400277 c -= snprintf(buf + PAGE_SIZE - c, c, "%s\n", sl->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 }
279 }
280
281 up(&md->mutex);
282
283 return PAGE_SIZE - c;
284}
285
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400286#define W1_MASTER_ATTR_RO(_name, _mode) \
287 struct device_attribute w1_master_attribute_##_name = \
288 __ATTR(w1_master_##_name, _mode, \
289 w1_master_attribute_show_##_name, NULL)
290
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400291#define W1_MASTER_ATTR_RW(_name, _mode) \
292 struct device_attribute w1_master_attribute_##_name = \
293 __ATTR(w1_master_##_name, _mode, \
294 w1_master_attribute_show_##_name, \
295 w1_master_attribute_store_##_name)
296
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400297static W1_MASTER_ATTR_RO(name, S_IRUGO);
298static W1_MASTER_ATTR_RO(slaves, S_IRUGO);
299static W1_MASTER_ATTR_RO(slave_count, S_IRUGO);
300static W1_MASTER_ATTR_RO(max_slave_count, S_IRUGO);
301static W1_MASTER_ATTR_RO(attempts, S_IRUGO);
302static W1_MASTER_ATTR_RO(timeout, S_IRUGO);
303static W1_MASTER_ATTR_RO(pointer, S_IRUGO);
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400304static W1_MASTER_ATTR_RW(search, S_IRUGO | S_IWUGO);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400305
306static struct attribute *w1_master_default_attrs[] = {
307 &w1_master_attribute_name.attr,
308 &w1_master_attribute_slaves.attr,
309 &w1_master_attribute_slave_count.attr,
310 &w1_master_attribute_max_slave_count.attr,
311 &w1_master_attribute_attempts.attr,
312 &w1_master_attribute_timeout.attr,
313 &w1_master_attribute_pointer.attr,
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400314 &w1_master_attribute_search.attr,
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400315 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316};
317
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400318static struct attribute_group w1_master_defattr_group = {
319 .attrs = w1_master_default_attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400322int w1_create_master_attributes(struct w1_master *master)
323{
324 return sysfs_create_group(&master->dev.kobj, &w1_master_defattr_group);
325}
326
327void w1_destroy_master_attributes(struct w1_master *master)
328{
329 sysfs_remove_group(&master->dev.kobj, &w1_master_defattr_group);
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static int __w1_attach_slave_device(struct w1_slave *sl)
333{
334 int err;
335
336 sl->dev.parent = &sl->master->dev;
337 sl->dev.driver = sl->master->driver;
338 sl->dev.bus = &w1_bus_type;
339 sl->dev.release = &w1_slave_release;
340
341 snprintf(&sl->dev.bus_id[0], sizeof(sl->dev.bus_id),
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400342 "%02x-%012llx",
343 (unsigned int) sl->reg_num.family,
344 (unsigned long long) sl->reg_num.id);
345 snprintf(&sl->name[0], sizeof(sl->name),
346 "%02x-%012llx",
347 (unsigned int) sl->reg_num.family,
348 (unsigned long long) sl->reg_num.id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 dev_dbg(&sl->dev, "%s: registering %s.\n", __func__,
351 &sl->dev.bus_id[0]);
352
353 err = device_register(&sl->dev);
354 if (err < 0) {
355 dev_err(&sl->dev,
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400356 "Device registration [%s] failed. err=%d\n",
357 sl->dev.bus_id, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return err;
359 }
360
361 memcpy(&sl->attr_bin, &w1_slave_bin_attribute, sizeof(sl->attr_bin));
362 memcpy(&sl->attr_name, &w1_slave_attribute, sizeof(sl->attr_name));
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 sl->attr_bin.read = sl->family->fops->rbin;
365 sl->attr_name.show = sl->family->fops->rname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 err = device_create_file(&sl->dev, &sl->attr_name);
368 if (err < 0) {
369 dev_err(&sl->dev,
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400370 "sysfs file creation for [%s] failed. err=%d\n",
371 sl->dev.bus_id, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 device_unregister(&sl->dev);
373 return err;
374 }
375
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400376 if ( sl->attr_bin.read ) {
377 err = sysfs_create_bin_file(&sl->dev.kobj, &sl->attr_bin);
378 if (err < 0) {
379 dev_err(&sl->dev,
380 "sysfs file creation for [%s] failed. err=%d\n",
381 sl->dev.bus_id, err);
382 device_remove_file(&sl->dev, &sl->attr_name);
383 device_unregister(&sl->dev);
384 return err;
385 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
388 list_add_tail(&sl->w1_slave_entry, &sl->master->slist);
389
390 return 0;
391}
392
393static int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn)
394{
395 struct w1_slave *sl;
396 struct w1_family *f;
397 int err;
398 struct w1_netlink_msg msg;
399
400 sl = kmalloc(sizeof(struct w1_slave), GFP_KERNEL);
401 if (!sl) {
402 dev_err(&dev->dev,
403 "%s: failed to allocate new slave device.\n",
404 __func__);
405 return -ENOMEM;
406 }
407
408 memset(sl, 0, sizeof(*sl));
409
410 sl->owner = THIS_MODULE;
411 sl->master = dev;
412 set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
413
414 memcpy(&sl->reg_num, rn, sizeof(sl->reg_num));
415 atomic_set(&sl->refcnt, 0);
416 init_completion(&sl->dev_released);
417
418 spin_lock(&w1_flock);
419 f = w1_family_registered(rn->family);
420 if (!f) {
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400421 f= &w1_default_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 dev_info(&dev->dev, "Family %x for %02x.%012llx.%02x is not registered.\n",
423 rn->family, rn->family,
424 (unsigned long long)rn->id, rn->crc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426 __w1_family_get(f);
427 spin_unlock(&w1_flock);
428
429 sl->family = f;
430
431
432 err = __w1_attach_slave_device(sl);
433 if (err < 0) {
434 dev_err(&dev->dev, "%s: Attaching %s failed.\n", __func__,
435 sl->name);
436 w1_family_put(sl->family);
437 kfree(sl);
438 return err;
439 }
440
441 sl->ttl = dev->slave_ttl;
442 dev->slave_count++;
443
444 memcpy(&msg.id.id, rn, sizeof(msg.id.id));
445 msg.type = W1_SLAVE_ADD;
446 w1_netlink_send(dev, &msg);
447
448 return 0;
449}
450
451static void w1_slave_detach(struct w1_slave *sl)
452{
453 struct w1_netlink_msg msg;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 dev_info(&sl->dev, "%s: detaching %s.\n", __func__, sl->name);
456
457 while (atomic_read(&sl->refcnt)) {
458 printk(KERN_INFO "Waiting for %s to become free: refcnt=%d.\n",
459 sl->name, atomic_read(&sl->refcnt));
460
461 if (msleep_interruptible(1000))
462 flush_signals(current);
463 }
464
Evgeniy Polyakov99c5bfe2005-06-04 01:31:26 +0400465 if ( sl->attr_bin.read ) {
466 sysfs_remove_bin_file (&sl->dev.kobj, &sl->attr_bin);
467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 device_remove_file(&sl->dev, &sl->attr_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 device_unregister(&sl->dev);
470 w1_family_put(sl->family);
471
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400472 sl->master->slave_count--;
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 memcpy(&msg.id.id, &sl->reg_num, sizeof(msg.id.id));
475 msg.type = W1_SLAVE_REMOVE;
476 w1_netlink_send(sl->master, &msg);
477}
478
479static struct w1_master *w1_search_master(unsigned long data)
480{
481 struct w1_master *dev;
482 int found = 0;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400483
484 spin_lock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 list_for_each_entry(dev, &w1_masters, w1_master_entry) {
486 if (dev->bus_master->data == data) {
487 found = 1;
488 atomic_inc(&dev->refcnt);
489 break;
490 }
491 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400492 spin_unlock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 return (found)?dev:NULL;
495}
496
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400497void w1_reconnect_slaves(struct w1_family *f)
498{
499 struct w1_master *dev;
500
501 spin_lock_bh(&w1_mlock);
502 list_for_each_entry(dev, &w1_masters, w1_master_entry) {
503 dev_info(&dev->dev, "Reconnecting slaves in %s into new family %02x.\n",
504 dev->name, f->fid);
505 set_bit(W1_MASTER_NEED_RECONNECT, &dev->flags);
506 }
507 spin_unlock_bh(&w1_mlock);
508}
509
510
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400511static void w1_slave_found(unsigned long data, u64 rn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 int slave_count;
514 struct w1_slave *sl;
515 struct list_head *ent;
516 struct w1_reg_num *tmp;
517 int family_found = 0;
518 struct w1_master *dev;
Evgeniy Polyakov0e65f822005-06-30 22:52:38 +0400519 u64 rn_le = cpu_to_le64(rn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 dev = w1_search_master(data);
522 if (!dev) {
523 printk(KERN_ERR "Failed to find w1 master device for data %08lx, it is impossible.\n",
524 data);
525 return;
526 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 tmp = (struct w1_reg_num *) &rn;
529
530 slave_count = 0;
531 list_for_each(ent, &dev->slist) {
532
533 sl = list_entry(ent, struct w1_slave, w1_slave_entry);
534
535 if (sl->reg_num.family == tmp->family &&
536 sl->reg_num.id == tmp->id &&
537 sl->reg_num.crc == tmp->crc) {
538 set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
539 break;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400540 } else if (sl->reg_num.family == tmp->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 family_found = 1;
542 break;
543 }
544
545 slave_count++;
546 }
547
johnpol@2ka.mipt.ru8523ff42005-04-18 21:16:57 -0700548 if (slave_count == dev->slave_count &&
Evgeniy Polyakov0e65f822005-06-30 22:52:38 +0400549 rn && ((rn >> 56) & 0xff) == w1_calc_crc8((u8 *)&rn_le, 7)) {
johnpol@2ka.mipt.ru8523ff42005-04-18 21:16:57 -0700550 w1_attach_slave_device(dev, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 atomic_dec(&dev->refcnt);
554}
555
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400556/**
557 * Performs a ROM Search & registers any devices found.
558 * The 1-wire search is a simple binary tree search.
559 * For each bit of the address, we read two bits and write one bit.
560 * The bit written will put to sleep all devies that don't match that bit.
561 * When the two reads differ, the direction choice is obvious.
562 * When both bits are 0, we must choose a path to take.
563 * When we can scan all 64 bits without having to choose a path, we are done.
564 *
565 * See "Application note 187 1-wire search algorithm" at www.maxim-ic.com
566 *
567 * @dev The master device to search
568 * @cb Function to call when a device is found
569 */
570void w1_search(struct w1_master *dev, w1_slave_found_callback cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400572 u64 last_rn, rn, tmp64;
573 int i, slave_count = 0;
574 int last_zero, last_device;
575 int search_bit, desc_bit;
576 u8 triplet_ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400578 search_bit = 0;
579 rn = last_rn = 0;
580 last_device = 0;
581 last_zero = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 desc_bit = 64;
584
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400585 while ( !last_device && (slave_count++ < dev->max_slave_count) ) {
586 last_rn = rn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 rn = 0;
588
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /*
590 * Reset bus and all 1-wire device state machines
591 * so they can respond to our requests.
592 *
593 * Return 0 - device(s) present, 1 - no devices present.
594 */
595 if (w1_reset_bus(dev)) {
Evgeniy Polyakov2da5bf82005-08-12 11:46:22 -0700596 dev_dbg(&dev->dev, "No devices present on the wire.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 }
599
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400600 /* Start the search */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 w1_write_8(dev, W1_SEARCH);
602 for (i = 0; i < 64; ++i) {
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400603 /* Determine the direction/search bit */
604 if (i == desc_bit)
605 search_bit = 1; /* took the 0 path last time, so take the 1 path */
606 else if (i > desc_bit)
607 search_bit = 0; /* take the 0 path on the next branch */
608 else
609 search_bit = ((last_rn >> i) & 0x1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400611 /** Read two bits and write one bit */
612 triplet_ret = w1_triplet(dev, search_bit);
613
614 /* quit if no device responded */
615 if ( (triplet_ret & 0x03) == 0x03 )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 break;
617
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400618 /* If both directions were valid, and we took the 0 path... */
619 if (triplet_ret == 0)
620 last_zero = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400622 /* extract the direction taken & update the device number */
623 tmp64 = (triplet_ret >> 2);
624 rn |= (tmp64 << i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Evgeniy Polyakov6b729862005-06-04 01:30:43 +0400627 if ( (triplet_ret & 0x03) != 0x03 ) {
628 if ( (desc_bit == last_zero) || (last_zero < 0))
629 last_device = 1;
630 desc_bit = last_zero;
631 cb(dev->bus_master->data, rn);
632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
634}
635
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400636static int w1_control(void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400638 struct w1_slave *sl, *sln;
639 struct w1_master *dev, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int err, have_to_wait = 0;
641
642 daemonize("w1_control");
643 allow_signal(SIGTERM);
644
645 while (!control_needs_exit || have_to_wait) {
646 have_to_wait = 0;
647
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700648 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 msleep_interruptible(w1_timeout * 1000);
650
651 if (signal_pending(current))
652 flush_signals(current);
653
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400654 list_for_each_entry_safe(dev, n, &w1_masters, w1_master_entry) {
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400655 if (!control_needs_exit && !dev->flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 continue;
657 /*
658 * Little race: we can create thread but not set the flag.
659 * Get a chance for external process to set flag up.
660 */
661 if (!dev->initialized) {
662 have_to_wait = 1;
663 continue;
664 }
665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (control_needs_exit) {
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400667 set_bit(W1_MASTER_NEED_EXIT, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 err = kill_proc(dev->kpid, SIGTERM, 1);
670 if (err)
671 dev_err(&dev->dev,
672 "Failed to send signal to w1 kernel thread %d.\n",
673 dev->kpid);
674 }
675
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400676 if (test_bit(W1_MASTER_NEED_EXIT, &dev->flags)) {
677 wait_for_completion(&dev->dev_exited);
678 spin_lock_bh(&w1_mlock);
679 list_del(&dev->w1_master_entry);
680 spin_unlock_bh(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400682 list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) {
683 list_del(&sl->w1_slave_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400685 w1_slave_detach(sl);
686 kfree(sl);
687 }
688 w1_destroy_master_attributes(dev);
689 atomic_dec(&dev->refcnt);
690 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 }
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400692
693 if (test_bit(W1_MASTER_NEED_RECONNECT, &dev->flags)) {
694 dev_info(&dev->dev, "Reconnecting slaves in device %s.\n", dev->name);
695 down(&dev->mutex);
696 list_for_each_entry(sl, &dev->slist, w1_slave_entry) {
697 if (sl->family->fid == W1_FAMILY_DEFAULT) {
698 struct w1_reg_num rn;
699 list_del(&sl->w1_slave_entry);
700 w1_slave_detach(sl);
701
702 memcpy(&rn, &sl->reg_num, sizeof(rn));
703
704 kfree(sl);
705
706 w1_attach_slave_device(dev, &rn);
707 }
708 }
709 clear_bit(W1_MASTER_NEED_RECONNECT, &dev->flags);
710 up(&dev->mutex);
711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 }
714
715 complete_and_exit(&w1_control_complete, 0);
716}
717
718int w1_process(void *data)
719{
720 struct w1_master *dev = (struct w1_master *) data;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400721 struct w1_slave *sl, *sln;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 daemonize("%s", dev->name);
724 allow_signal(SIGTERM);
725
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400726 while (!test_bit(W1_MASTER_NEED_EXIT, &dev->flags)) {
Christoph Lameter3e1d1d22005-06-24 23:13:50 -0700727 try_to_freeze();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 msleep_interruptible(w1_timeout * 1000);
729
730 if (signal_pending(current))
731 flush_signals(current);
732
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400733 if (test_bit(W1_MASTER_NEED_EXIT, &dev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 break;
735
736 if (!dev->initialized)
737 continue;
738
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400739 if (dev->search_count == 0)
740 continue;
741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 if (down_interruptible(&dev->mutex))
743 continue;
744
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400745 list_for_each_entry(sl, &dev->slist, w1_slave_entry)
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400746 clear_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags);
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 w1_search_devices(dev, w1_slave_found);
749
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400750 list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) {
751 if (!test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags) && !--sl->ttl) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 list_del (&sl->w1_slave_entry);
753
754 w1_slave_detach (sl);
755 kfree (sl);
756
757 dev->slave_count--;
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400758 } else if (test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 sl->ttl = dev->slave_ttl;
760 }
Evgeniy Polyakov2a9d0c12005-06-04 01:31:02 +0400761
762 if (dev->search_count > 0)
763 dev->search_count--;
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 up(&dev->mutex);
766 }
767
768 atomic_dec(&dev->refcnt);
769 complete_and_exit(&dev->dev_exited, 0);
770
771 return 0;
772}
773
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400774static int w1_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 int retval;
777
778 printk(KERN_INFO "Driver for 1-wire Dallas network protocol.\n");
779
780 retval = bus_register(&w1_bus_type);
781 if (retval) {
782 printk(KERN_ERR "Failed to register bus. err=%d.\n", retval);
783 goto err_out_exit_init;
784 }
785
786 retval = driver_register(&w1_driver);
787 if (retval) {
788 printk(KERN_ERR
789 "Failed to register master driver. err=%d.\n",
790 retval);
791 goto err_out_bus_unregister;
792 }
793
794 control_thread = kernel_thread(&w1_control, NULL, 0);
795 if (control_thread < 0) {
796 printk(KERN_ERR "Failed to create control thread. err=%d\n",
797 control_thread);
798 retval = control_thread;
799 goto err_out_driver_unregister;
800 }
801
802 return 0;
803
804err_out_driver_unregister:
805 driver_unregister(&w1_driver);
806
807err_out_bus_unregister:
808 bus_unregister(&w1_bus_type);
809
810err_out_exit_init:
811 return retval;
812}
813
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400814static void w1_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 struct w1_master *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400818 list_for_each_entry(dev, &w1_masters, w1_master_entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 __w1_remove_master_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
821 control_needs_exit = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 wait_for_completion(&w1_control_complete);
823
824 driver_unregister(&w1_driver);
825 bus_unregister(&w1_bus_type);
826}
827
828module_init(w1_init);
829module_exit(w1_fini);