Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Evgeniy Polyakov | a801876 | 2011-08-25 15:59:06 -0700 | [diff] [blame] | 2 | * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net> |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 3 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License as published by |
| 6 | * the Free Software Foundation; either version 2 of the License, or |
| 7 | * (at your option) any later version. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/list.h> |
| 17 | #include <linux/delay.h> |
Evgeniy Polyakov | 674a396c | 2006-02-20 11:15:37 +0300 | [diff] [blame] | 18 | #include <linux/kthread.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Ingo Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 20 | #include <linux/sched/signal.h> |
Paul Gortmaker | 9623932 | 2011-07-10 13:21:52 -0400 | [diff] [blame] | 21 | #include <linux/export.h> |
Paul Gortmaker | 4d18412 | 2011-09-15 23:09:52 -0400 | [diff] [blame] | 22 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | #include "w1.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include "w1_netlink.h" |
Evgeniy Polyakov | 70d484b | 2006-04-24 10:46:14 +0400 | [diff] [blame] | 26 | #include "w1_int.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | |
David Fries | 9141f57 | 2008-10-15 22:04:45 -0700 | [diff] [blame] | 28 | static int w1_search_count = -1; /* Default is continual scan */ |
| 29 | module_param_named(search_count, w1_search_count, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
David Fries | 6a158c0 | 2008-10-15 22:04:42 -0700 | [diff] [blame] | 31 | static int w1_enable_pullup = 1; |
| 32 | module_param_named(enable_pullup, w1_enable_pullup, int, 0); |
| 33 | |
Thomas Wood | 7242d42 | 2014-05-30 16:10:20 -0700 | [diff] [blame] | 34 | static struct w1_master *w1_alloc_dev(u32 id, int slave_count, int slave_ttl, |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 35 | struct device_driver *driver, |
| 36 | struct device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | { |
| 38 | struct w1_master *dev; |
| 39 | int err; |
| 40 | |
| 41 | /* |
| 42 | * We are in process context(kernel thread), so can sleep. |
| 43 | */ |
Yoann Padioleau | dd00cc4 | 2007-07-19 01:49:03 -0700 | [diff] [blame] | 44 | dev = kzalloc(sizeof(struct w1_master) + sizeof(struct w1_bus_master), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | if (!dev) { |
Fjodor Schelichow | fdc9167 | 2014-06-19 02:52:00 +0200 | [diff] [blame] | 46 | pr_err("Failed to allocate %zd bytes for new w1 device.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | sizeof(struct w1_master)); |
| 48 | return NULL; |
| 49 | } |
| 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | |
| 52 | dev->bus_master = (struct w1_bus_master *)(dev + 1); |
| 53 | |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 54 | dev->owner = THIS_MODULE; |
| 55 | dev->max_slave_count = slave_count; |
| 56 | dev->slave_count = 0; |
| 57 | dev->attempts = 0; |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 58 | dev->initialized = 0; |
| 59 | dev->id = id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | dev->slave_ttl = slave_ttl; |
David Fries | 9141f57 | 2008-10-15 22:04:45 -0700 | [diff] [blame] | 61 | dev->search_count = w1_search_count; |
David Fries | 6a158c0 | 2008-10-15 22:04:42 -0700 | [diff] [blame] | 62 | dev->enable_pullup = w1_enable_pullup; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 64 | /* 1 for w1_process to decrement |
| 65 | * 1 for __w1_remove_master_device to decrement |
| 66 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | atomic_set(&dev->refcnt, 2); |
| 68 | |
| 69 | INIT_LIST_HEAD(&dev->slist); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 70 | INIT_LIST_HEAD(&dev->async_list); |
Evgeniy Polyakov | abd52a1 | 2006-04-03 12:04:27 +0400 | [diff] [blame] | 71 | mutex_init(&dev->mutex); |
NeilBrown | b02f8be | 2012-05-18 15:59:52 +1000 | [diff] [blame] | 72 | mutex_init(&dev->bus_mutex); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 73 | mutex_init(&dev->list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | memcpy(&dev->dev, device, sizeof(struct device)); |
Kay Sievers | 40f91de | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 76 | dev_set_name(&dev->dev, "w1_bus_master%u", dev->id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | snprintf(dev->name, sizeof(dev->name), "w1_bus_master%u", dev->id); |
Florian Faber | 68a436a | 2011-11-02 13:39:59 -0700 | [diff] [blame] | 78 | dev->dev.init_name = dev->name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | dev->driver = driver; |
| 81 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | dev->seq = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
| 84 | err = device_register(&dev->dev); |
| 85 | if (err) { |
Fjodor Schelichow | fdc9167 | 2014-06-19 02:52:00 +0200 | [diff] [blame] | 86 | pr_err("Failed to register master device. err=%d\n", err); |
Levente Kurusa | 5052436 | 2015-09-14 10:56:12 -0700 | [diff] [blame] | 87 | put_device(&dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | dev = NULL; |
| 89 | } |
| 90 | |
| 91 | return dev; |
| 92 | } |
| 93 | |
Evgeniy Polyakov | 2c5bfda | 2006-04-04 20:35:22 +0400 | [diff] [blame] | 94 | static void w1_free_dev(struct w1_master *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
| 96 | device_unregister(&dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
David Fries | b3be177 | 2014-01-15 22:29:25 -0600 | [diff] [blame] | 99 | /** |
| 100 | * w1_add_master_device() - registers a new master device |
| 101 | * @master: master bus device to register |
| 102 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | int w1_add_master_device(struct w1_bus_master *master) |
| 104 | { |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 105 | struct w1_master *dev, *entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | int retval = 0; |
| 107 | struct w1_netlink_msg msg; |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 108 | int id, found; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | |
Thomas Wood | 7242d42 | 2014-05-30 16:10:20 -0700 | [diff] [blame] | 110 | /* validate minimum functionality */ |
| 111 | if (!(master->touch_bit && master->reset_bus) && |
| 112 | !(master->write_bit && master->read_bit) && |
Evgeniy Polyakov | c1f858b | 2007-05-08 00:31:20 -0700 | [diff] [blame] | 113 | !(master->write_byte && master->read_byte && master->reset_bus)) { |
Fjodor Schelichow | fdc9167 | 2014-06-19 02:52:00 +0200 | [diff] [blame] | 114 | pr_err("w1_add_master_device: invalid function set\n"); |
Evgeniy Polyakov | 6adf87b | 2005-06-04 01:29:25 +0400 | [diff] [blame] | 115 | return(-EINVAL); |
Thomas Wood | 7242d42 | 2014-05-30 16:10:20 -0700 | [diff] [blame] | 116 | } |
Evgeniy Polyakov | be57ce2 | 2005-06-04 01:21:46 +0400 | [diff] [blame] | 117 | |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 118 | /* Lock until the device is added (or not) to w1_masters. */ |
| 119 | mutex_lock(&w1_mlock); |
| 120 | /* Search for the first available id (starting at 1). */ |
| 121 | id = 0; |
| 122 | do { |
| 123 | ++id; |
| 124 | found = 0; |
| 125 | list_for_each_entry(entry, &w1_masters, w1_master_entry) { |
| 126 | if (entry->id == id) { |
| 127 | found = 1; |
| 128 | break; |
| 129 | } |
| 130 | } |
| 131 | } while (found); |
| 132 | |
| 133 | dev = w1_alloc_dev(id, w1_max_slave_count, w1_max_slave_ttl, |
| 134 | &w1_master_driver, &w1_master_device); |
| 135 | if (!dev) { |
| 136 | mutex_unlock(&w1_mlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | return -ENOMEM; |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 138 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 140 | retval = w1_create_master_attributes(dev); |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 141 | if (retval) { |
| 142 | mutex_unlock(&w1_mlock); |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 143 | goto err_out_free_dev; |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 144 | } |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 145 | |
| 146 | memcpy(dev->bus_master, master, sizeof(struct w1_bus_master)); |
| 147 | |
| 148 | dev->initialized = 1; |
| 149 | |
Evgeniy Polyakov | 674a396c | 2006-02-20 11:15:37 +0300 | [diff] [blame] | 150 | dev->thread = kthread_run(&w1_process, dev, "%s", dev->name); |
| 151 | if (IS_ERR(dev->thread)) { |
| 152 | retval = PTR_ERR(dev->thread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | dev_err(&dev->dev, |
| 154 | "Failed to create new kernel thread. err=%d\n", |
Evgeniy Polyakov | 674a396c | 2006-02-20 11:15:37 +0300 | [diff] [blame] | 155 | retval); |
David Fries | af00a2d | 2008-10-15 22:04:53 -0700 | [diff] [blame] | 156 | mutex_unlock(&w1_mlock); |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 157 | goto err_out_rm_attr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | list_add(&dev->w1_master_entry, &w1_masters); |
Evgeniy Polyakov | abd52a1 | 2006-04-03 12:04:27 +0400 | [diff] [blame] | 161 | mutex_unlock(&w1_mlock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 163 | memset(&msg, 0, sizeof(msg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | msg.id.mst.id = dev->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | msg.type = W1_MASTER_ADD; |
| 166 | w1_netlink_send(dev, &msg); |
| 167 | |
| 168 | return 0; |
| 169 | |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 170 | #if 0 /* Thread cleanup code, not required currently. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | err_out_kill_thread: |
David Fries | 4210569 | 2014-01-15 22:29:13 -0600 | [diff] [blame] | 172 | set_bit(W1_ABORT_SEARCH, &dev->flags); |
Evgeniy Polyakov | 674a396c | 2006-02-20 11:15:37 +0300 | [diff] [blame] | 173 | kthread_stop(dev->thread); |
David Fries | 01e14d6 | 2008-10-15 22:04:40 -0700 | [diff] [blame] | 174 | #endif |
| 175 | err_out_rm_attr: |
| 176 | w1_destroy_master_attributes(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | err_out_free_dev: |
| 178 | w1_free_dev(dev); |
| 179 | |
| 180 | return retval; |
| 181 | } |
Andrew F. Davis | 50fa295 | 2017-05-16 15:02:12 -0500 | [diff] [blame^] | 182 | EXPORT_SYMBOL(w1_add_master_device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | |
| 184 | void __w1_remove_master_device(struct w1_master *dev) |
| 185 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | struct w1_netlink_msg msg; |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 187 | struct w1_slave *sl, *sln; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 189 | mutex_lock(&w1_mlock); |
| 190 | list_del(&dev->w1_master_entry); |
| 191 | mutex_unlock(&w1_mlock); |
| 192 | |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 193 | set_bit(W1_ABORT_SEARCH, &dev->flags); |
| 194 | kthread_stop(dev->thread); |
| 195 | |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 196 | mutex_lock(&dev->mutex); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 197 | mutex_lock(&dev->list_mutex); |
| 198 | list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) { |
| 199 | mutex_unlock(&dev->list_mutex); |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 200 | w1_slave_detach(sl); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 201 | mutex_lock(&dev->list_mutex); |
| 202 | } |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 203 | w1_destroy_master_attributes(dev); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 204 | mutex_unlock(&dev->list_mutex); |
David Fries | c30c9b1 | 2008-10-15 22:04:38 -0700 | [diff] [blame] | 205 | mutex_unlock(&dev->mutex); |
| 206 | atomic_dec(&dev->refcnt); |
| 207 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | while (atomic_read(&dev->refcnt)) { |
Evgeniy Polyakov | 674a396c | 2006-02-20 11:15:37 +0300 | [diff] [blame] | 209 | dev_info(&dev->dev, "Waiting for %s to become free: refcnt=%d.\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | dev->name, atomic_read(&dev->refcnt)); |
| 211 | |
| 212 | if (msleep_interruptible(1000)) |
| 213 | flush_signals(current); |
Alexey Khoroshilov | a0f1046 | 2014-05-07 01:26:04 +0400 | [diff] [blame] | 214 | mutex_lock(&dev->list_mutex); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 215 | w1_process_callbacks(dev); |
Alexey Khoroshilov | a0f1046 | 2014-05-07 01:26:04 +0400 | [diff] [blame] | 216 | mutex_unlock(&dev->list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
Alexey Khoroshilov | a0f1046 | 2014-05-07 01:26:04 +0400 | [diff] [blame] | 218 | mutex_lock(&dev->list_mutex); |
David Fries | 9fcbbac | 2014-01-15 22:29:18 -0600 | [diff] [blame] | 219 | w1_process_callbacks(dev); |
Alexey Khoroshilov | a0f1046 | 2014-05-07 01:26:04 +0400 | [diff] [blame] | 220 | mutex_unlock(&dev->list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | |
Evgeniy Polyakov | 1200337 | 2006-03-23 19:11:58 +0300 | [diff] [blame] | 222 | memset(&msg, 0, sizeof(msg)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | msg.id.mst.id = dev->id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | msg.type = W1_MASTER_REMOVE; |
| 225 | w1_netlink_send(dev, &msg); |
| 226 | |
| 227 | w1_free_dev(dev); |
| 228 | } |
| 229 | |
David Fries | b3be177 | 2014-01-15 22:29:25 -0600 | [diff] [blame] | 230 | /** |
| 231 | * w1_remove_master_device() - unregister a master device |
| 232 | * @bm: master bus device to remove |
| 233 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | void w1_remove_master_device(struct w1_bus_master *bm) |
| 235 | { |
Evgeniy Polyakov | 59d9445 | 2007-08-22 14:01:51 -0700 | [diff] [blame] | 236 | struct w1_master *dev, *found = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Evgeniy Polyakov | 7785925 | 2005-05-20 22:33:25 +0400 | [diff] [blame] | 238 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | if (!dev->initialized) |
| 240 | continue; |
| 241 | |
Evgeniy Polyakov | 59d9445 | 2007-08-22 14:01:51 -0700 | [diff] [blame] | 242 | if (dev->bus_master->data == bm->data) { |
| 243 | found = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | break; |
Evgeniy Polyakov | 59d9445 | 2007-08-22 14:01:51 -0700 | [diff] [blame] | 245 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Evgeniy Polyakov | 59d9445 | 2007-08-22 14:01:51 -0700 | [diff] [blame] | 248 | if (!found) { |
Fjodor Schelichow | fdc9167 | 2014-06-19 02:52:00 +0200 | [diff] [blame] | 249 | pr_err("Device doesn't exist.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | return; |
| 251 | } |
| 252 | |
Evgeniy Polyakov | 59d9445 | 2007-08-22 14:01:51 -0700 | [diff] [blame] | 253 | __w1_remove_master_device(found); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 255 | EXPORT_SYMBOL(w1_remove_master_device); |