4 * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
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.
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.
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
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 #include <linux/kthread.h>
35 #include <asm/atomic.h>
41 #include "w1_family.h"
42 #include "w1_netlink.h"
44 MODULE_LICENSE("GPL");
45 MODULE_AUTHOR("Evgeniy Polyakov <johnpol@2ka.mipt.ru>");
46 MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol.");
48 static int w1_timeout
= 10;
49 static int w1_control_timeout
= 1;
50 int w1_max_slave_count
= 10;
51 int w1_max_slave_ttl
= 10;
53 module_param_named(timeout
, w1_timeout
, int, 0);
54 module_param_named(control_timeout
, w1_control_timeout
, int, 0);
55 module_param_named(max_slave_count
, w1_max_slave_count
, int, 0);
56 module_param_named(slave_ttl
, w1_max_slave_ttl
, int, 0);
58 DEFINE_SPINLOCK(w1_mlock
);
59 LIST_HEAD(w1_masters
);
61 static struct task_struct
*w1_control_thread
;
63 static int w1_master_match(struct device
*dev
, struct device_driver
*drv
)
68 static int w1_master_probe(struct device
*dev
)
73 static void w1_master_release(struct device
*dev
)
75 struct w1_master
*md
= dev_to_w1_master(dev
);
77 dev_dbg(dev
, "%s: Releasing %s.\n", __func__
, md
->name
);
80 memset(md
, 0, sizeof(struct w1_master
) + sizeof(struct w1_bus_master
));
84 static void w1_slave_release(struct device
*dev
)
86 struct w1_slave
*sl
= dev_to_w1_slave(dev
);
88 dev_dbg(dev
, "%s: Releasing %s.\n", __func__
, sl
->name
);
90 while (atomic_read(&sl
->refcnt
)) {
91 dev_dbg(dev
, "Waiting for %s to become free: refcnt=%d.\n",
92 sl
->name
, atomic_read(&sl
->refcnt
));
93 if (msleep_interruptible(1000))
94 flush_signals(current
);
97 w1_family_put(sl
->family
);
98 sl
->master
->slave_count
--;
100 complete(&sl
->released
);
103 static ssize_t
w1_slave_read_name(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
105 struct w1_slave
*sl
= dev_to_w1_slave(dev
);
107 return sprintf(buf
, "%s\n", sl
->name
);
110 static ssize_t
w1_slave_read_id(struct kobject
*kobj
, char *buf
, loff_t off
, size_t count
)
112 struct w1_slave
*sl
= kobj_to_w1_slave(kobj
);
114 atomic_inc(&sl
->refcnt
);
121 memcpy(buf
, (u8
*)&sl
->reg_num
, count
);
123 atomic_dec(&sl
->refcnt
);
128 static struct device_attribute w1_slave_attr_name
=
129 __ATTR(name
, S_IRUGO
, w1_slave_read_name
, NULL
);
131 static struct bin_attribute w1_slave_attr_bin_id
= {
135 .owner
= THIS_MODULE
,
138 .read
= w1_slave_read_id
,
143 static ssize_t
w1_default_write(struct kobject
*kobj
, char *buf
, loff_t off
, size_t count
)
145 struct w1_slave
*sl
= kobj_to_w1_slave(kobj
);
147 if (down_interruptible(&sl
->master
->mutex
)) {
152 if (w1_reset_select_slave(sl
)) {
157 w1_write_block(sl
->master
, buf
, count
);
160 up(&sl
->master
->mutex
);
165 static ssize_t
w1_default_read(struct kobject
*kobj
, char *buf
, loff_t off
, size_t count
)
167 struct w1_slave
*sl
= kobj_to_w1_slave(kobj
);
169 if (down_interruptible(&sl
->master
->mutex
)) {
174 w1_read_block(sl
->master
, buf
, count
);
176 up(&sl
->master
->mutex
);
181 static struct bin_attribute w1_default_attr
= {
184 .mode
= S_IRUGO
| S_IWUSR
,
185 .owner
= THIS_MODULE
,
188 .read
= w1_default_read
,
189 .write
= w1_default_write
,
192 static int w1_default_add_slave(struct w1_slave
*sl
)
194 return sysfs_create_bin_file(&sl
->dev
.kobj
, &w1_default_attr
);
197 static void w1_default_remove_slave(struct w1_slave
*sl
)
199 sysfs_remove_bin_file(&sl
->dev
.kobj
, &w1_default_attr
);
202 static struct w1_family_ops w1_default_fops
= {
203 .add_slave
= w1_default_add_slave
,
204 .remove_slave
= w1_default_remove_slave
,
207 static struct w1_family w1_default_family
= {
208 .fops
= &w1_default_fops
,
211 static int w1_uevent(struct device
*dev
, char **envp
, int num_envp
, char *buffer
, int buffer_size
);
213 static struct bus_type w1_bus_type
= {
215 .match
= w1_master_match
,
219 struct device_driver w1_master_driver
= {
220 .name
= "w1_master_driver",
222 .probe
= w1_master_probe
,
225 struct device w1_master_device
= {
228 .bus_id
= "w1 bus master",
229 .driver
= &w1_master_driver
,
230 .release
= &w1_master_release
233 static struct device_driver w1_slave_driver
= {
234 .name
= "w1_slave_driver",
239 struct device w1_slave_device
= {
242 .bus_id
= "w1 bus slave",
243 .driver
= &w1_slave_driver
,
244 .release
= &w1_slave_release
248 static ssize_t
w1_master_attribute_show_name(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
250 struct w1_master
*md
= dev_to_w1_master(dev
);
253 if (down_interruptible (&md
->mutex
))
256 count
= sprintf(buf
, "%s\n", md
->name
);
263 static ssize_t
w1_master_attribute_store_search(struct device
* dev
,
264 struct device_attribute
*attr
,
265 const char * buf
, size_t count
)
267 struct w1_master
*md
= dev_to_w1_master(dev
);
269 if (down_interruptible (&md
->mutex
))
272 md
->search_count
= simple_strtol(buf
, NULL
, 0);
279 static ssize_t
w1_master_attribute_show_search(struct device
*dev
,
280 struct device_attribute
*attr
,
283 struct w1_master
*md
= dev_to_w1_master(dev
);
286 if (down_interruptible (&md
->mutex
))
289 count
= sprintf(buf
, "%d\n", md
->search_count
);
296 static ssize_t
w1_master_attribute_show_pointer(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
298 struct w1_master
*md
= dev_to_w1_master(dev
);
301 if (down_interruptible(&md
->mutex
))
304 count
= sprintf(buf
, "0x%p\n", md
->bus_master
);
310 static ssize_t
w1_master_attribute_show_timeout(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
313 count
= sprintf(buf
, "%d\n", w1_timeout
);
317 static ssize_t
w1_master_attribute_show_max_slave_count(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
319 struct w1_master
*md
= dev_to_w1_master(dev
);
322 if (down_interruptible(&md
->mutex
))
325 count
= sprintf(buf
, "%d\n", md
->max_slave_count
);
331 static ssize_t
w1_master_attribute_show_attempts(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
333 struct w1_master
*md
= dev_to_w1_master(dev
);
336 if (down_interruptible(&md
->mutex
))
339 count
= sprintf(buf
, "%lu\n", md
->attempts
);
345 static ssize_t
w1_master_attribute_show_slave_count(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
347 struct w1_master
*md
= dev_to_w1_master(dev
);
350 if (down_interruptible(&md
->mutex
))
353 count
= sprintf(buf
, "%d\n", md
->slave_count
);
359 static ssize_t
w1_master_attribute_show_slaves(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
361 struct w1_master
*md
= dev_to_w1_master(dev
);
364 if (down_interruptible(&md
->mutex
))
367 if (md
->slave_count
== 0)
368 c
-= snprintf(buf
+ PAGE_SIZE
- c
, c
, "not found.\n");
370 struct list_head
*ent
, *n
;
373 list_for_each_safe(ent
, n
, &md
->slist
) {
374 sl
= list_entry(ent
, struct w1_slave
, w1_slave_entry
);
376 c
-= snprintf(buf
+ PAGE_SIZE
- c
, c
, "%s\n", sl
->name
);
382 return PAGE_SIZE
- c
;
385 #define W1_MASTER_ATTR_RO(_name, _mode) \
386 struct device_attribute w1_master_attribute_##_name = \
387 __ATTR(w1_master_##_name, _mode, \
388 w1_master_attribute_show_##_name, NULL)
390 #define W1_MASTER_ATTR_RW(_name, _mode) \
391 struct device_attribute w1_master_attribute_##_name = \
392 __ATTR(w1_master_##_name, _mode, \
393 w1_master_attribute_show_##_name, \
394 w1_master_attribute_store_##_name)
396 static W1_MASTER_ATTR_RO(name
, S_IRUGO
);
397 static W1_MASTER_ATTR_RO(slaves
, S_IRUGO
);
398 static W1_MASTER_ATTR_RO(slave_count
, S_IRUGO
);
399 static W1_MASTER_ATTR_RO(max_slave_count
, S_IRUGO
);
400 static W1_MASTER_ATTR_RO(attempts
, S_IRUGO
);
401 static W1_MASTER_ATTR_RO(timeout
, S_IRUGO
);
402 static W1_MASTER_ATTR_RO(pointer
, S_IRUGO
);
403 static W1_MASTER_ATTR_RW(search
, S_IRUGO
| S_IWUGO
);
405 static struct attribute
*w1_master_default_attrs
[] = {
406 &w1_master_attribute_name
.attr
,
407 &w1_master_attribute_slaves
.attr
,
408 &w1_master_attribute_slave_count
.attr
,
409 &w1_master_attribute_max_slave_count
.attr
,
410 &w1_master_attribute_attempts
.attr
,
411 &w1_master_attribute_timeout
.attr
,
412 &w1_master_attribute_pointer
.attr
,
413 &w1_master_attribute_search
.attr
,
417 static struct attribute_group w1_master_defattr_group
= {
418 .attrs
= w1_master_default_attrs
,
421 int w1_create_master_attributes(struct w1_master
*master
)
423 return sysfs_create_group(&master
->dev
.kobj
, &w1_master_defattr_group
);
426 static void w1_destroy_master_attributes(struct w1_master
*master
)
428 sysfs_remove_group(&master
->dev
.kobj
, &w1_master_defattr_group
);
431 #ifdef CONFIG_HOTPLUG
432 static int w1_uevent(struct device
*dev
, char **envp
, int num_envp
, char *buffer
, int buffer_size
)
434 struct w1_master
*md
= NULL
;
435 struct w1_slave
*sl
= NULL
;
436 char *event_owner
, *name
;
437 int err
, cur_index
=0, cur_len
=0;
439 if (dev
->driver
== &w1_master_driver
) {
440 md
= container_of(dev
, struct w1_master
, dev
);
441 event_owner
= "master";
443 } else if (dev
->driver
== &w1_slave_driver
) {
444 sl
= container_of(dev
, struct w1_slave
, dev
);
445 event_owner
= "slave";
448 dev_dbg(dev
, "Unknown event.\n");
452 dev_dbg(dev
, "Hotplug event for %s %s, bus_id=%s.\n", event_owner
, name
, dev
->bus_id
);
454 if (dev
->driver
!= &w1_slave_driver
|| !sl
)
457 err
= add_uevent_var(envp
, num_envp
, &cur_index
, buffer
, buffer_size
,
458 &cur_len
, "W1_FID=%02X", sl
->reg_num
.family
);
462 err
= add_uevent_var(envp
, num_envp
, &cur_index
, buffer
, buffer_size
,
463 &cur_len
, "W1_SLAVE_ID=%024LX",
464 (unsigned long long)sl
->reg_num
.id
);
471 static int w1_uevent(struct device
*dev
, char **envp
, int num_envp
, char *buffer
, int buffer_size
)
477 static int __w1_attach_slave_device(struct w1_slave
*sl
)
481 sl
->dev
.parent
= &sl
->master
->dev
;
482 sl
->dev
.driver
= &w1_slave_driver
;
483 sl
->dev
.bus
= &w1_bus_type
;
484 sl
->dev
.release
= &w1_slave_release
;
486 snprintf(&sl
->dev
.bus_id
[0], sizeof(sl
->dev
.bus_id
),
488 (unsigned int) sl
->reg_num
.family
,
489 (unsigned long long) sl
->reg_num
.id
);
490 snprintf(&sl
->name
[0], sizeof(sl
->name
),
492 (unsigned int) sl
->reg_num
.family
,
493 (unsigned long long) sl
->reg_num
.id
);
495 dev_dbg(&sl
->dev
, "%s: registering %s as %p.\n", __func__
, &sl
->dev
.bus_id
[0]);
497 err
= device_register(&sl
->dev
);
500 "Device registration [%s] failed. err=%d\n",
501 sl
->dev
.bus_id
, err
);
505 /* Create "name" entry */
506 err
= device_create_file(&sl
->dev
, &w1_slave_attr_name
);
509 "sysfs file creation for [%s] failed. err=%d\n",
510 sl
->dev
.bus_id
, err
);
514 /* Create "id" entry */
515 err
= sysfs_create_bin_file(&sl
->dev
.kobj
, &w1_slave_attr_bin_id
);
518 "sysfs file creation for [%s] failed. err=%d\n",
519 sl
->dev
.bus_id
, err
);
523 /* if the family driver needs to initialize something... */
524 if (sl
->family
->fops
&& sl
->family
->fops
->add_slave
&&
525 ((err
= sl
->family
->fops
->add_slave(sl
)) < 0)) {
527 "sysfs file creation for [%s] failed. err=%d\n",
528 sl
->dev
.bus_id
, err
);
532 list_add_tail(&sl
->w1_slave_entry
, &sl
->master
->slist
);
537 sysfs_remove_bin_file(&sl
->dev
.kobj
, &w1_slave_attr_bin_id
);
539 device_remove_file(&sl
->dev
, &w1_slave_attr_name
);
541 device_unregister(&sl
->dev
);
545 static int w1_attach_slave_device(struct w1_master
*dev
, struct w1_reg_num
*rn
)
550 struct w1_netlink_msg msg
;
552 sl
= kmalloc(sizeof(struct w1_slave
), GFP_KERNEL
);
555 "%s: failed to allocate new slave device.\n",
560 memset(sl
, 0, sizeof(*sl
));
562 sl
->owner
= THIS_MODULE
;
564 set_bit(W1_SLAVE_ACTIVE
, (long *)&sl
->flags
);
566 memcpy(&sl
->reg_num
, rn
, sizeof(sl
->reg_num
));
567 atomic_set(&sl
->refcnt
, 0);
568 init_completion(&sl
->released
);
570 spin_lock(&w1_flock
);
571 f
= w1_family_registered(rn
->family
);
573 f
= &w1_default_family
;
574 dev_info(&dev
->dev
, "Family %x for %02x.%012llx.%02x is not registered.\n",
575 rn
->family
, rn
->family
,
576 (unsigned long long)rn
->id
, rn
->crc
);
579 spin_unlock(&w1_flock
);
584 err
= __w1_attach_slave_device(sl
);
586 dev_err(&dev
->dev
, "%s: Attaching %s failed.\n", __func__
,
588 w1_family_put(sl
->family
);
593 sl
->ttl
= dev
->slave_ttl
;
596 memcpy(&msg
.id
.id
, rn
, sizeof(msg
.id
.id
));
597 msg
.type
= W1_SLAVE_ADD
;
598 w1_netlink_send(dev
, &msg
);
603 static void w1_slave_detach(struct w1_slave
*sl
)
605 struct w1_netlink_msg msg
;
607 dev_dbg(&sl
->dev
, "%s: detaching %s [%p].\n", __func__
, sl
->name
, sl
);
609 list_del(&sl
->w1_slave_entry
);
611 if (sl
->family
->fops
&& sl
->family
->fops
->remove_slave
)
612 sl
->family
->fops
->remove_slave(sl
);
614 memcpy(&msg
.id
.id
, &sl
->reg_num
, sizeof(msg
.id
.id
));
615 msg
.type
= W1_SLAVE_REMOVE
;
616 w1_netlink_send(sl
->master
, &msg
);
618 sysfs_remove_bin_file(&sl
->dev
.kobj
, &w1_slave_attr_bin_id
);
619 device_remove_file(&sl
->dev
, &w1_slave_attr_name
);
620 device_unregister(&sl
->dev
);
622 wait_for_completion(&sl
->released
);
626 static struct w1_master
*w1_search_master(void *data
)
628 struct w1_master
*dev
;
631 spin_lock_bh(&w1_mlock
);
632 list_for_each_entry(dev
, &w1_masters
, w1_master_entry
) {
633 if (dev
->bus_master
->data
== data
) {
635 atomic_inc(&dev
->refcnt
);
639 spin_unlock_bh(&w1_mlock
);
641 return (found
)?dev
:NULL
;
644 void w1_reconnect_slaves(struct w1_family
*f
)
646 struct w1_master
*dev
;
648 spin_lock_bh(&w1_mlock
);
649 list_for_each_entry(dev
, &w1_masters
, w1_master_entry
) {
650 dev_dbg(&dev
->dev
, "Reconnecting slaves in %s into new family %02x.\n",
652 set_bit(W1_MASTER_NEED_RECONNECT
, &dev
->flags
);
654 spin_unlock_bh(&w1_mlock
);
657 static void w1_slave_found(void *data
, u64 rn
)
661 struct list_head
*ent
;
662 struct w1_reg_num
*tmp
;
663 int family_found
= 0;
664 struct w1_master
*dev
;
665 u64 rn_le
= cpu_to_le64(rn
);
667 dev
= w1_search_master(data
);
669 printk(KERN_ERR
"Failed to find w1 master device for data %p, "
670 "it is impossible.\n", data
);
674 tmp
= (struct w1_reg_num
*) &rn
;
677 list_for_each(ent
, &dev
->slist
) {
679 sl
= list_entry(ent
, struct w1_slave
, w1_slave_entry
);
681 if (sl
->reg_num
.family
== tmp
->family
&&
682 sl
->reg_num
.id
== tmp
->id
&&
683 sl
->reg_num
.crc
== tmp
->crc
) {
684 set_bit(W1_SLAVE_ACTIVE
, (long *)&sl
->flags
);
686 } else if (sl
->reg_num
.family
== tmp
->family
) {
694 if (slave_count
== dev
->slave_count
&&
695 rn
&& ((rn
>> 56) & 0xff) == w1_calc_crc8((u8
*)&rn_le
, 7)) {
696 w1_attach_slave_device(dev
, tmp
);
699 atomic_dec(&dev
->refcnt
);
703 * Performs a ROM Search & registers any devices found.
704 * The 1-wire search is a simple binary tree search.
705 * For each bit of the address, we read two bits and write one bit.
706 * The bit written will put to sleep all devies that don't match that bit.
707 * When the two reads differ, the direction choice is obvious.
708 * When both bits are 0, we must choose a path to take.
709 * When we can scan all 64 bits without having to choose a path, we are done.
711 * See "Application note 187 1-wire search algorithm" at www.maxim-ic.com
713 * @dev The master device to search
714 * @cb Function to call when a device is found
716 void w1_search(struct w1_master
*dev
, w1_slave_found_callback cb
)
718 u64 last_rn
, rn
, tmp64
;
719 int i
, slave_count
= 0;
720 int last_zero
, last_device
;
721 int search_bit
, desc_bit
;
731 while ( !last_device
&& (slave_count
++ < dev
->max_slave_count
) ) {
736 * Reset bus and all 1-wire device state machines
737 * so they can respond to our requests.
739 * Return 0 - device(s) present, 1 - no devices present.
741 if (w1_reset_bus(dev
)) {
742 dev_dbg(&dev
->dev
, "No devices present on the wire.\n");
746 /* Start the search */
747 w1_write_8(dev
, W1_SEARCH
);
748 for (i
= 0; i
< 64; ++i
) {
749 /* Determine the direction/search bit */
751 search_bit
= 1; /* took the 0 path last time, so take the 1 path */
752 else if (i
> desc_bit
)
753 search_bit
= 0; /* take the 0 path on the next branch */
755 search_bit
= ((last_rn
>> i
) & 0x1);
757 /** Read two bits and write one bit */
758 triplet_ret
= w1_triplet(dev
, search_bit
);
760 /* quit if no device responded */
761 if ( (triplet_ret
& 0x03) == 0x03 )
764 /* If both directions were valid, and we took the 0 path... */
765 if (triplet_ret
== 0)
768 /* extract the direction taken & update the device number */
769 tmp64
= (triplet_ret
>> 2);
773 if ( (triplet_ret
& 0x03) != 0x03 ) {
774 if ( (desc_bit
== last_zero
) || (last_zero
< 0))
776 desc_bit
= last_zero
;
777 cb(dev
->bus_master
->data
, rn
);
782 static int w1_control(void *data
)
784 struct w1_slave
*sl
, *sln
;
785 struct w1_master
*dev
, *n
;
786 int have_to_wait
= 0;
788 while (!kthread_should_stop() || have_to_wait
) {
792 msleep_interruptible(w1_control_timeout
* 1000);
794 list_for_each_entry_safe(dev
, n
, &w1_masters
, w1_master_entry
) {
795 if (!kthread_should_stop() && !dev
->flags
)
798 * Little race: we can create thread but not set the flag.
799 * Get a chance for external process to set flag up.
801 if (!dev
->initialized
) {
806 if (kthread_should_stop() || test_bit(W1_MASTER_NEED_EXIT
, &dev
->flags
)) {
807 set_bit(W1_MASTER_NEED_EXIT
, &dev
->flags
);
809 spin_lock(&w1_mlock
);
810 list_del(&dev
->w1_master_entry
);
811 spin_unlock(&w1_mlock
);
814 list_for_each_entry_safe(sl
, sln
, &dev
->slist
, w1_slave_entry
) {
817 w1_destroy_master_attributes(dev
);
819 atomic_dec(&dev
->refcnt
);
823 if (test_bit(W1_MASTER_NEED_RECONNECT
, &dev
->flags
)) {
824 dev_dbg(&dev
->dev
, "Reconnecting slaves in device %s.\n", dev
->name
);
826 list_for_each_entry_safe(sl
, sln
, &dev
->slist
, w1_slave_entry
) {
827 if (sl
->family
->fid
== W1_FAMILY_DEFAULT
) {
828 struct w1_reg_num rn
;
830 memcpy(&rn
, &sl
->reg_num
, sizeof(rn
));
833 w1_attach_slave_device(dev
, &rn
);
836 dev_dbg(&dev
->dev
, "Reconnecting slaves in device %s has been finished.\n", dev
->name
);
837 clear_bit(W1_MASTER_NEED_RECONNECT
, &dev
->flags
);
846 int w1_process(void *data
)
848 struct w1_master
*dev
= (struct w1_master
*) data
;
849 struct w1_slave
*sl
, *sln
;
851 while (!kthread_should_stop() && !test_bit(W1_MASTER_NEED_EXIT
, &dev
->flags
)) {
853 msleep_interruptible(w1_timeout
* 1000);
855 if (kthread_should_stop() || test_bit(W1_MASTER_NEED_EXIT
, &dev
->flags
))
858 if (!dev
->initialized
)
861 if (dev
->search_count
== 0)
864 if (down_interruptible(&dev
->mutex
))
867 list_for_each_entry(sl
, &dev
->slist
, w1_slave_entry
)
868 clear_bit(W1_SLAVE_ACTIVE
, (long *)&sl
->flags
);
870 w1_search_devices(dev
, w1_slave_found
);
872 list_for_each_entry_safe(sl
, sln
, &dev
->slist
, w1_slave_entry
) {
873 if (!test_bit(W1_SLAVE_ACTIVE
, (unsigned long *)&sl
->flags
) && !--sl
->ttl
) {
877 } else if (test_bit(W1_SLAVE_ACTIVE
, (unsigned long *)&sl
->flags
))
878 sl
->ttl
= dev
->slave_ttl
;
881 if (dev
->search_count
> 0)
887 atomic_dec(&dev
->refcnt
);
892 static int w1_init(void)
896 printk(KERN_INFO
"Driver for 1-wire Dallas network protocol.\n");
898 retval
= bus_register(&w1_bus_type
);
900 printk(KERN_ERR
"Failed to register bus. err=%d.\n", retval
);
901 goto err_out_exit_init
;
904 retval
= driver_register(&w1_master_driver
);
907 "Failed to register master driver. err=%d.\n",
909 goto err_out_bus_unregister
;
912 retval
= driver_register(&w1_slave_driver
);
915 "Failed to register master driver. err=%d.\n",
917 goto err_out_master_unregister
;
920 w1_control_thread
= kthread_run(w1_control
, NULL
, "w1_control");
921 if (IS_ERR(w1_control_thread
)) {
922 retval
= PTR_ERR(w1_control_thread
);
923 printk(KERN_ERR
"Failed to create control thread. err=%d\n",
925 goto err_out_slave_unregister
;
930 err_out_slave_unregister
:
931 driver_unregister(&w1_slave_driver
);
933 err_out_master_unregister
:
934 driver_unregister(&w1_master_driver
);
936 err_out_bus_unregister
:
937 bus_unregister(&w1_bus_type
);
943 static void w1_fini(void)
945 struct w1_master
*dev
;
947 list_for_each_entry(dev
, &w1_masters
, w1_master_entry
)
948 __w1_remove_master_device(dev
);
950 kthread_stop(w1_control_thread
);
952 driver_unregister(&w1_slave_driver
);
953 driver_unregister(&w1_master_driver
);
954 bus_unregister(&w1_bus_type
);
957 module_init(w1_init
);
958 module_exit(w1_fini
);