]>
Commit | Line | Data |
---|---|---|
1da177e4 | 1 | /* |
7785925d | 2 | * w1.c |
1da177e4 LT |
3 | * |
4 | * Copyright (c) 2004 Evgeniy Polyakov <[email protected]> | |
7785925d | 5 | * |
1da177e4 LT |
6 | * |
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> | |
674a396c | 33 | #include <linux/kthread.h> |
7dfb7103 | 34 | #include <linux/freezer.h> |
1da177e4 LT |
35 | |
36 | #include <asm/atomic.h> | |
37 | ||
38 | #include "w1.h" | |
1da177e4 LT |
39 | #include "w1_log.h" |
40 | #include "w1_int.h" | |
41 | #include "w1_family.h" | |
42 | #include "w1_netlink.h" | |
43 | ||
44 | MODULE_LICENSE("GPL"); | |
45 | MODULE_AUTHOR("Evgeniy Polyakov <[email protected]>"); | |
46 | MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol."); | |
47 | ||
48 | static int w1_timeout = 10; | |
49 | int w1_max_slave_count = 10; | |
50 | int w1_max_slave_ttl = 10; | |
51 | ||
52 | module_param_named(timeout, w1_timeout, int, 0); | |
53 | module_param_named(max_slave_count, w1_max_slave_count, int, 0); | |
54 | module_param_named(slave_ttl, w1_max_slave_ttl, int, 0); | |
55 | ||
abd52a13 | 56 | DEFINE_MUTEX(w1_mlock); |
1da177e4 LT |
57 | LIST_HEAD(w1_masters); |
58 | ||
9b467411 DF |
59 | static int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn); |
60 | ||
1da177e4 LT |
61 | static int w1_master_match(struct device *dev, struct device_driver *drv) |
62 | { | |
63 | return 1; | |
64 | } | |
65 | ||
66 | static int w1_master_probe(struct device *dev) | |
67 | { | |
68 | return -ENODEV; | |
69 | } | |
70 | ||
1da177e4 LT |
71 | static void w1_master_release(struct device *dev) |
72 | { | |
db2d0008 | 73 | struct w1_master *md = dev_to_w1_master(dev); |
3aca692d EP |
74 | |
75 | dev_dbg(dev, "%s: Releasing %s.\n", __func__, md->name); | |
3aca692d EP |
76 | memset(md, 0, sizeof(struct w1_master) + sizeof(struct w1_bus_master)); |
77 | kfree(md); | |
1da177e4 LT |
78 | } |
79 | ||
80 | static void w1_slave_release(struct device *dev) | |
81 | { | |
db2d0008 | 82 | struct w1_slave *sl = dev_to_w1_slave(dev); |
3aca692d | 83 | |
7dc8f527 | 84 | dev_dbg(dev, "%s: Releasing %s.\n", __func__, sl->name); |
3aca692d EP |
85 | |
86 | while (atomic_read(&sl->refcnt)) { | |
7dc8f527 | 87 | dev_dbg(dev, "Waiting for %s to become free: refcnt=%d.\n", |
3aca692d EP |
88 | sl->name, atomic_read(&sl->refcnt)); |
89 | if (msleep_interruptible(1000)) | |
90 | flush_signals(current); | |
91 | } | |
92 | ||
93 | w1_family_put(sl->family); | |
94 | sl->master->slave_count--; | |
95 | ||
96 | complete(&sl->released); | |
1da177e4 LT |
97 | } |
98 | ||
d2a4ef6a | 99 | static ssize_t w1_slave_read_name(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 100 | { |
3aca692d | 101 | struct w1_slave *sl = dev_to_w1_slave(dev); |
d2a4ef6a | 102 | |
3aca692d | 103 | return sprintf(buf, "%s\n", sl->name); |
1da177e4 LT |
104 | } |
105 | ||
07e00341 DF |
106 | static ssize_t w1_slave_read_id(struct device *dev, |
107 | struct device_attribute *attr, char *buf) | |
1da177e4 | 108 | { |
07e00341 DF |
109 | struct w1_slave *sl = dev_to_w1_slave(dev); |
110 | ssize_t count = sizeof(sl->reg_num); | |
d2a4ef6a | 111 | |
07e00341 | 112 | memcpy(buf, (u8 *)&sl->reg_num, count); |
d2a4ef6a | 113 | return count; |
3aca692d | 114 | } |
d2a4ef6a EP |
115 | |
116 | static struct device_attribute w1_slave_attr_name = | |
117 | __ATTR(name, S_IRUGO, w1_slave_read_name, NULL); | |
07e00341 DF |
118 | static struct device_attribute w1_slave_attr_id = |
119 | __ATTR(id, S_IRUGO, w1_slave_read_id, NULL); | |
7785925d | 120 | |
d2a4ef6a | 121 | /* Default family */ |
f522d239 | 122 | |
91a69029 ZR |
123 | static ssize_t w1_default_write(struct kobject *kobj, |
124 | struct bin_attribute *bin_attr, | |
125 | char *buf, loff_t off, size_t count) | |
f522d239 EP |
126 | { |
127 | struct w1_slave *sl = kobj_to_w1_slave(kobj); | |
128 | ||
abd52a13 | 129 | mutex_lock(&sl->master->mutex); |
f522d239 EP |
130 | if (w1_reset_select_slave(sl)) { |
131 | count = 0; | |
132 | goto out_up; | |
133 | } | |
134 | ||
135 | w1_write_block(sl->master, buf, count); | |
136 | ||
137 | out_up: | |
abd52a13 | 138 | mutex_unlock(&sl->master->mutex); |
f522d239 EP |
139 | return count; |
140 | } | |
141 | ||
91a69029 ZR |
142 | static ssize_t w1_default_read(struct kobject *kobj, |
143 | struct bin_attribute *bin_attr, | |
144 | char *buf, loff_t off, size_t count) | |
f522d239 EP |
145 | { |
146 | struct w1_slave *sl = kobj_to_w1_slave(kobj); | |
147 | ||
abd52a13 | 148 | mutex_lock(&sl->master->mutex); |
f522d239 | 149 | w1_read_block(sl->master, buf, count); |
abd52a13 | 150 | mutex_unlock(&sl->master->mutex); |
f522d239 EP |
151 | return count; |
152 | } | |
153 | ||
154 | static struct bin_attribute w1_default_attr = { | |
155 | .attr = { | |
156 | .name = "rw", | |
157 | .mode = S_IRUGO | S_IWUSR, | |
f522d239 EP |
158 | }, |
159 | .size = PAGE_SIZE, | |
160 | .read = w1_default_read, | |
161 | .write = w1_default_write, | |
162 | }; | |
163 | ||
164 | static int w1_default_add_slave(struct w1_slave *sl) | |
165 | { | |
166 | return sysfs_create_bin_file(&sl->dev.kobj, &w1_default_attr); | |
167 | } | |
168 | ||
169 | static void w1_default_remove_slave(struct w1_slave *sl) | |
170 | { | |
171 | sysfs_remove_bin_file(&sl->dev.kobj, &w1_default_attr); | |
172 | } | |
173 | ||
174 | static struct w1_family_ops w1_default_fops = { | |
175 | .add_slave = w1_default_add_slave, | |
176 | .remove_slave = w1_default_remove_slave, | |
177 | }; | |
178 | ||
179 | static struct w1_family w1_default_family = { | |
180 | .fops = &w1_default_fops, | |
181 | }; | |
d2a4ef6a | 182 | |
7eff2e7a | 183 | static int w1_uevent(struct device *dev, struct kobj_uevent_env *env); |
7785925d | 184 | |
1da177e4 LT |
185 | static struct bus_type w1_bus_type = { |
186 | .name = "w1", | |
187 | .match = w1_master_match, | |
312c004d | 188 | .uevent = w1_uevent, |
1da177e4 LT |
189 | }; |
190 | ||
7f772ed8 EP |
191 | struct device_driver w1_master_driver = { |
192 | .name = "w1_master_driver", | |
1da177e4 LT |
193 | .bus = &w1_bus_type, |
194 | .probe = w1_master_probe, | |
1da177e4 LT |
195 | }; |
196 | ||
7f772ed8 | 197 | struct device w1_master_device = { |
1da177e4 LT |
198 | .parent = NULL, |
199 | .bus = &w1_bus_type, | |
200 | .bus_id = "w1 bus master", | |
7f772ed8 | 201 | .driver = &w1_master_driver, |
1da177e4 LT |
202 | .release = &w1_master_release |
203 | }; | |
204 | ||
2c5bfdac | 205 | static struct device_driver w1_slave_driver = { |
7f772ed8 EP |
206 | .name = "w1_slave_driver", |
207 | .bus = &w1_bus_type, | |
208 | }; | |
209 | ||
2c5bfdac | 210 | #if 0 |
7f772ed8 EP |
211 | struct device w1_slave_device = { |
212 | .parent = NULL, | |
213 | .bus = &w1_bus_type, | |
214 | .bus_id = "w1 bus slave", | |
215 | .driver = &w1_slave_driver, | |
3aca692d | 216 | .release = &w1_slave_release |
7f772ed8 | 217 | }; |
2c5bfdac | 218 | #endif /* 0 */ |
7f772ed8 | 219 | |
060b8845 | 220 | static ssize_t w1_master_attribute_show_name(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 221 | { |
db2d0008 | 222 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 223 | ssize_t count; |
7785925d | 224 | |
abd52a13 | 225 | mutex_lock(&md->mutex); |
1da177e4 | 226 | count = sprintf(buf, "%s\n", md->name); |
abd52a13 | 227 | mutex_unlock(&md->mutex); |
1da177e4 LT |
228 | |
229 | return count; | |
230 | } | |
231 | ||
2a9d0c17 EP |
232 | static ssize_t w1_master_attribute_store_search(struct device * dev, |
233 | struct device_attribute *attr, | |
234 | const char * buf, size_t count) | |
235 | { | |
6a158c0d | 236 | long tmp; |
db2d0008 | 237 | struct w1_master *md = dev_to_w1_master(dev); |
2a9d0c17 | 238 | |
6a158c0d DF |
239 | if (strict_strtol(buf, 0, &tmp) == -EINVAL) |
240 | return -EINVAL; | |
241 | ||
abd52a13 | 242 | mutex_lock(&md->mutex); |
6a158c0d | 243 | md->search_count = tmp; |
abd52a13 | 244 | mutex_unlock(&md->mutex); |
3c52e4e6 | 245 | wake_up_process(md->thread); |
2a9d0c17 EP |
246 | |
247 | return count; | |
248 | } | |
249 | ||
250 | static ssize_t w1_master_attribute_show_search(struct device *dev, | |
251 | struct device_attribute *attr, | |
252 | char *buf) | |
253 | { | |
db2d0008 | 254 | struct w1_master *md = dev_to_w1_master(dev); |
2a9d0c17 EP |
255 | ssize_t count; |
256 | ||
abd52a13 | 257 | mutex_lock(&md->mutex); |
2a9d0c17 | 258 | count = sprintf(buf, "%d\n", md->search_count); |
abd52a13 | 259 | mutex_unlock(&md->mutex); |
2a9d0c17 EP |
260 | |
261 | return count; | |
262 | } | |
263 | ||
6a158c0d DF |
264 | static ssize_t w1_master_attribute_store_pullup(struct device *dev, |
265 | struct device_attribute *attr, | |
266 | const char *buf, size_t count) | |
267 | { | |
268 | long tmp; | |
269 | struct w1_master *md = dev_to_w1_master(dev); | |
270 | ||
271 | if (strict_strtol(buf, 0, &tmp) == -EINVAL) | |
272 | return -EINVAL; | |
273 | ||
274 | mutex_lock(&md->mutex); | |
275 | md->enable_pullup = tmp; | |
276 | mutex_unlock(&md->mutex); | |
277 | wake_up_process(md->thread); | |
278 | ||
279 | return count; | |
280 | } | |
281 | ||
282 | static ssize_t w1_master_attribute_show_pullup(struct device *dev, | |
283 | struct device_attribute *attr, | |
284 | char *buf) | |
285 | { | |
286 | struct w1_master *md = dev_to_w1_master(dev); | |
287 | ssize_t count; | |
288 | ||
289 | mutex_lock(&md->mutex); | |
290 | count = sprintf(buf, "%d\n", md->enable_pullup); | |
291 | mutex_unlock(&md->mutex); | |
292 | ||
293 | return count; | |
294 | } | |
295 | ||
060b8845 | 296 | static ssize_t w1_master_attribute_show_pointer(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 297 | { |
db2d0008 | 298 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 299 | ssize_t count; |
7785925d | 300 | |
abd52a13 | 301 | mutex_lock(&md->mutex); |
1da177e4 | 302 | count = sprintf(buf, "0x%p\n", md->bus_master); |
abd52a13 | 303 | mutex_unlock(&md->mutex); |
1da177e4 LT |
304 | return count; |
305 | } | |
306 | ||
060b8845 | 307 | static ssize_t w1_master_attribute_show_timeout(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 LT |
308 | { |
309 | ssize_t count; | |
310 | count = sprintf(buf, "%d\n", w1_timeout); | |
311 | return count; | |
312 | } | |
313 | ||
060b8845 | 314 | static ssize_t w1_master_attribute_show_max_slave_count(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 315 | { |
db2d0008 | 316 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 317 | ssize_t count; |
7785925d | 318 | |
abd52a13 | 319 | mutex_lock(&md->mutex); |
1da177e4 | 320 | count = sprintf(buf, "%d\n", md->max_slave_count); |
abd52a13 | 321 | mutex_unlock(&md->mutex); |
1da177e4 LT |
322 | return count; |
323 | } | |
324 | ||
060b8845 | 325 | static ssize_t w1_master_attribute_show_attempts(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 326 | { |
db2d0008 | 327 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 328 | ssize_t count; |
7785925d | 329 | |
abd52a13 | 330 | mutex_lock(&md->mutex); |
1da177e4 | 331 | count = sprintf(buf, "%lu\n", md->attempts); |
abd52a13 | 332 | mutex_unlock(&md->mutex); |
1da177e4 LT |
333 | return count; |
334 | } | |
335 | ||
060b8845 | 336 | static ssize_t w1_master_attribute_show_slave_count(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 337 | { |
db2d0008 | 338 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 339 | ssize_t count; |
7785925d | 340 | |
abd52a13 | 341 | mutex_lock(&md->mutex); |
1da177e4 | 342 | count = sprintf(buf, "%d\n", md->slave_count); |
abd52a13 | 343 | mutex_unlock(&md->mutex); |
1da177e4 LT |
344 | return count; |
345 | } | |
346 | ||
9b467411 DF |
347 | static ssize_t w1_master_attribute_show_slaves(struct device *dev, |
348 | struct device_attribute *attr, char *buf) | |
1da177e4 | 349 | { |
db2d0008 | 350 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 LT |
351 | int c = PAGE_SIZE; |
352 | ||
abd52a13 | 353 | mutex_lock(&md->mutex); |
1da177e4 LT |
354 | |
355 | if (md->slave_count == 0) | |
356 | c -= snprintf(buf + PAGE_SIZE - c, c, "not found.\n"); | |
357 | else { | |
358 | struct list_head *ent, *n; | |
359 | struct w1_slave *sl; | |
360 | ||
361 | list_for_each_safe(ent, n, &md->slist) { | |
362 | sl = list_entry(ent, struct w1_slave, w1_slave_entry); | |
363 | ||
7785925d | 364 | c -= snprintf(buf + PAGE_SIZE - c, c, "%s\n", sl->name); |
1da177e4 LT |
365 | } |
366 | } | |
367 | ||
abd52a13 | 368 | mutex_unlock(&md->mutex); |
1da177e4 LT |
369 | |
370 | return PAGE_SIZE - c; | |
371 | } | |
372 | ||
9b467411 DF |
373 | static ssize_t w1_master_attribute_show_add(struct device *dev, |
374 | struct device_attribute *attr, char *buf) | |
375 | { | |
376 | int c = PAGE_SIZE; | |
377 | c -= snprintf(buf+PAGE_SIZE - c, c, | |
378 | "write device id xx-xxxxxxxxxxxx to add slave\n"); | |
379 | return PAGE_SIZE - c; | |
380 | } | |
381 | ||
382 | static int w1_atoreg_num(struct device *dev, const char *buf, size_t count, | |
383 | struct w1_reg_num *rn) | |
384 | { | |
385 | unsigned int family; | |
386 | unsigned long long id; | |
387 | int i; | |
388 | u64 rn64_le; | |
389 | ||
390 | /* The CRC value isn't read from the user because the sysfs directory | |
391 | * doesn't include it and most messages from the bus search don't | |
392 | * print it either. It would be unreasonable for the user to then | |
393 | * provide it. | |
394 | */ | |
395 | const char *error_msg = "bad slave string format, expecting " | |
396 | "ff-dddddddddddd\n"; | |
397 | ||
398 | if (buf[2] != '-') { | |
399 | dev_err(dev, "%s", error_msg); | |
400 | return -EINVAL; | |
401 | } | |
402 | i = sscanf(buf, "%02x-%012llx", &family, &id); | |
403 | if (i != 2) { | |
404 | dev_err(dev, "%s", error_msg); | |
405 | return -EINVAL; | |
406 | } | |
407 | rn->family = family; | |
408 | rn->id = id; | |
409 | ||
410 | rn64_le = cpu_to_le64(*(u64 *)rn); | |
411 | rn->crc = w1_calc_crc8((u8 *)&rn64_le, 7); | |
412 | ||
413 | #if 0 | |
414 | dev_info(dev, "With CRC device is %02x.%012llx.%02x.\n", | |
415 | rn->family, (unsigned long long)rn->id, rn->crc); | |
416 | #endif | |
417 | ||
418 | return 0; | |
419 | } | |
420 | ||
421 | /* Searches the slaves in the w1_master and returns a pointer or NULL. | |
422 | * Note: must hold the mutex | |
423 | */ | |
424 | static struct w1_slave *w1_slave_search_device(struct w1_master *dev, | |
425 | struct w1_reg_num *rn) | |
426 | { | |
427 | struct w1_slave *sl; | |
428 | list_for_each_entry(sl, &dev->slist, w1_slave_entry) { | |
429 | if (sl->reg_num.family == rn->family && | |
430 | sl->reg_num.id == rn->id && | |
431 | sl->reg_num.crc == rn->crc) { | |
432 | return sl; | |
433 | } | |
434 | } | |
435 | return NULL; | |
436 | } | |
437 | ||
438 | static ssize_t w1_master_attribute_store_add(struct device *dev, | |
439 | struct device_attribute *attr, | |
440 | const char *buf, size_t count) | |
441 | { | |
442 | struct w1_master *md = dev_to_w1_master(dev); | |
443 | struct w1_reg_num rn; | |
444 | struct w1_slave *sl; | |
445 | ssize_t result = count; | |
446 | ||
447 | if (w1_atoreg_num(dev, buf, count, &rn)) | |
448 | return -EINVAL; | |
449 | ||
450 | mutex_lock(&md->mutex); | |
451 | sl = w1_slave_search_device(md, &rn); | |
452 | /* It would be nice to do a targeted search one the one-wire bus | |
453 | * for the new device to see if it is out there or not. But the | |
454 | * current search doesn't support that. | |
455 | */ | |
456 | if (sl) { | |
457 | dev_info(dev, "Device %s already exists\n", sl->name); | |
458 | result = -EINVAL; | |
459 | } else { | |
460 | w1_attach_slave_device(md, &rn); | |
461 | } | |
462 | mutex_unlock(&md->mutex); | |
463 | ||
464 | return result; | |
465 | } | |
466 | ||
467 | static ssize_t w1_master_attribute_show_remove(struct device *dev, | |
468 | struct device_attribute *attr, char *buf) | |
469 | { | |
470 | int c = PAGE_SIZE; | |
471 | c -= snprintf(buf+PAGE_SIZE - c, c, | |
472 | "write device id xx-xxxxxxxxxxxx to remove slave\n"); | |
473 | return PAGE_SIZE - c; | |
474 | } | |
475 | ||
476 | static ssize_t w1_master_attribute_store_remove(struct device *dev, | |
477 | struct device_attribute *attr, | |
478 | const char *buf, size_t count) | |
479 | { | |
480 | struct w1_master *md = dev_to_w1_master(dev); | |
481 | struct w1_reg_num rn; | |
482 | struct w1_slave *sl; | |
483 | ssize_t result = count; | |
484 | ||
485 | if (w1_atoreg_num(dev, buf, count, &rn)) | |
486 | return -EINVAL; | |
487 | ||
488 | mutex_lock(&md->mutex); | |
489 | sl = w1_slave_search_device(md, &rn); | |
490 | if (sl) { | |
491 | w1_slave_detach(sl); | |
492 | } else { | |
493 | dev_info(dev, "Device %02x-%012llx doesn't exists\n", rn.family, | |
494 | (unsigned long long)rn.id); | |
495 | result = -EINVAL; | |
496 | } | |
497 | mutex_unlock(&md->mutex); | |
498 | ||
499 | return result; | |
500 | } | |
501 | ||
7785925d EP |
502 | #define W1_MASTER_ATTR_RO(_name, _mode) \ |
503 | struct device_attribute w1_master_attribute_##_name = \ | |
504 | __ATTR(w1_master_##_name, _mode, \ | |
505 | w1_master_attribute_show_##_name, NULL) | |
506 | ||
2a9d0c17 EP |
507 | #define W1_MASTER_ATTR_RW(_name, _mode) \ |
508 | struct device_attribute w1_master_attribute_##_name = \ | |
509 | __ATTR(w1_master_##_name, _mode, \ | |
510 | w1_master_attribute_show_##_name, \ | |
511 | w1_master_attribute_store_##_name) | |
512 | ||
7785925d EP |
513 | static W1_MASTER_ATTR_RO(name, S_IRUGO); |
514 | static W1_MASTER_ATTR_RO(slaves, S_IRUGO); | |
515 | static W1_MASTER_ATTR_RO(slave_count, S_IRUGO); | |
516 | static W1_MASTER_ATTR_RO(max_slave_count, S_IRUGO); | |
517 | static W1_MASTER_ATTR_RO(attempts, S_IRUGO); | |
518 | static W1_MASTER_ATTR_RO(timeout, S_IRUGO); | |
519 | static W1_MASTER_ATTR_RO(pointer, S_IRUGO); | |
2a9d0c17 | 520 | static W1_MASTER_ATTR_RW(search, S_IRUGO | S_IWUGO); |
6a158c0d | 521 | static W1_MASTER_ATTR_RW(pullup, S_IRUGO | S_IWUGO); |
9b467411 DF |
522 | static W1_MASTER_ATTR_RW(add, S_IRUGO | S_IWUGO); |
523 | static W1_MASTER_ATTR_RW(remove, S_IRUGO | S_IWUGO); | |
7785925d EP |
524 | |
525 | static struct attribute *w1_master_default_attrs[] = { | |
526 | &w1_master_attribute_name.attr, | |
527 | &w1_master_attribute_slaves.attr, | |
528 | &w1_master_attribute_slave_count.attr, | |
529 | &w1_master_attribute_max_slave_count.attr, | |
530 | &w1_master_attribute_attempts.attr, | |
531 | &w1_master_attribute_timeout.attr, | |
532 | &w1_master_attribute_pointer.attr, | |
2a9d0c17 | 533 | &w1_master_attribute_search.attr, |
6a158c0d | 534 | &w1_master_attribute_pullup.attr, |
9b467411 DF |
535 | &w1_master_attribute_add.attr, |
536 | &w1_master_attribute_remove.attr, | |
7785925d | 537 | NULL |
1da177e4 LT |
538 | }; |
539 | ||
7785925d EP |
540 | static struct attribute_group w1_master_defattr_group = { |
541 | .attrs = w1_master_default_attrs, | |
1da177e4 LT |
542 | }; |
543 | ||
7785925d EP |
544 | int w1_create_master_attributes(struct w1_master *master) |
545 | { | |
546 | return sysfs_create_group(&master->dev.kobj, &w1_master_defattr_group); | |
547 | } | |
548 | ||
c30c9b15 | 549 | void w1_destroy_master_attributes(struct w1_master *master) |
7785925d EP |
550 | { |
551 | sysfs_remove_group(&master->dev.kobj, &w1_master_defattr_group); | |
552 | } | |
553 | ||
7f772ed8 | 554 | #ifdef CONFIG_HOTPLUG |
7eff2e7a | 555 | static int w1_uevent(struct device *dev, struct kobj_uevent_env *env) |
7f772ed8 EP |
556 | { |
557 | struct w1_master *md = NULL; | |
558 | struct w1_slave *sl = NULL; | |
559 | char *event_owner, *name; | |
7eff2e7a | 560 | int err; |
7f772ed8 EP |
561 | |
562 | if (dev->driver == &w1_master_driver) { | |
563 | md = container_of(dev, struct w1_master, dev); | |
564 | event_owner = "master"; | |
565 | name = md->name; | |
566 | } else if (dev->driver == &w1_slave_driver) { | |
567 | sl = container_of(dev, struct w1_slave, dev); | |
568 | event_owner = "slave"; | |
569 | name = sl->name; | |
570 | } else { | |
312c004d | 571 | dev_dbg(dev, "Unknown event.\n"); |
7f772ed8 EP |
572 | return -EINVAL; |
573 | } | |
574 | ||
c6976a4e AM |
575 | dev_dbg(dev, "Hotplug event for %s %s, bus_id=%s.\n", |
576 | event_owner, name, dev->bus_id); | |
7f772ed8 EP |
577 | |
578 | if (dev->driver != &w1_slave_driver || !sl) | |
579 | return 0; | |
580 | ||
7eff2e7a | 581 | err = add_uevent_var(env, "W1_FID=%02X", sl->reg_num.family); |
7f772ed8 EP |
582 | if (err) |
583 | return err; | |
584 | ||
7eff2e7a KS |
585 | err = add_uevent_var(env, "W1_SLAVE_ID=%024LX", |
586 | (unsigned long long)sl->reg_num.id); | |
7f772ed8 EP |
587 | if (err) |
588 | return err; | |
589 | ||
590 | return 0; | |
591 | }; | |
592 | #else | |
7eff2e7a | 593 | static int w1_uevent(struct device *dev, struct kobj_uevent_env *env) |
7f772ed8 EP |
594 | { |
595 | return 0; | |
596 | } | |
597 | #endif | |
598 | ||
1da177e4 LT |
599 | static int __w1_attach_slave_device(struct w1_slave *sl) |
600 | { | |
601 | int err; | |
602 | ||
603 | sl->dev.parent = &sl->master->dev; | |
7f772ed8 | 604 | sl->dev.driver = &w1_slave_driver; |
1da177e4 LT |
605 | sl->dev.bus = &w1_bus_type; |
606 | sl->dev.release = &w1_slave_release; | |
607 | ||
608 | snprintf(&sl->dev.bus_id[0], sizeof(sl->dev.bus_id), | |
6b729861 EP |
609 | "%02x-%012llx", |
610 | (unsigned int) sl->reg_num.family, | |
611 | (unsigned long long) sl->reg_num.id); | |
612 | snprintf(&sl->name[0], sizeof(sl->name), | |
613 | "%02x-%012llx", | |
614 | (unsigned int) sl->reg_num.family, | |
615 | (unsigned long long) sl->reg_num.id); | |
1da177e4 | 616 | |
c6976a4e | 617 | dev_dbg(&sl->dev, "%s: registering %s as %p.\n", __func__, |
60ed34be | 618 | &sl->dev.bus_id[0], sl); |
1da177e4 LT |
619 | |
620 | err = device_register(&sl->dev); | |
621 | if (err < 0) { | |
622 | dev_err(&sl->dev, | |
6b729861 EP |
623 | "Device registration [%s] failed. err=%d\n", |
624 | sl->dev.bus_id, err); | |
1da177e4 LT |
625 | return err; |
626 | } | |
627 | ||
d2a4ef6a EP |
628 | /* Create "name" entry */ |
629 | err = device_create_file(&sl->dev, &w1_slave_attr_name); | |
630 | if (err < 0) { | |
631 | dev_err(&sl->dev, | |
632 | "sysfs file creation for [%s] failed. err=%d\n", | |
633 | sl->dev.bus_id, err); | |
634 | goto out_unreg; | |
635 | } | |
1da177e4 | 636 | |
d2a4ef6a | 637 | /* Create "id" entry */ |
07e00341 | 638 | err = device_create_file(&sl->dev, &w1_slave_attr_id); |
1da177e4 LT |
639 | if (err < 0) { |
640 | dev_err(&sl->dev, | |
6b729861 EP |
641 | "sysfs file creation for [%s] failed. err=%d\n", |
642 | sl->dev.bus_id, err); | |
d2a4ef6a | 643 | goto out_rem1; |
1da177e4 LT |
644 | } |
645 | ||
d2a4ef6a EP |
646 | /* if the family driver needs to initialize something... */ |
647 | if (sl->family->fops && sl->family->fops->add_slave && | |
648 | ((err = sl->family->fops->add_slave(sl)) < 0)) { | |
649 | dev_err(&sl->dev, | |
650 | "sysfs file creation for [%s] failed. err=%d\n", | |
651 | sl->dev.bus_id, err); | |
652 | goto out_rem2; | |
1da177e4 LT |
653 | } |
654 | ||
655 | list_add_tail(&sl->w1_slave_entry, &sl->master->slist); | |
656 | ||
657 | return 0; | |
d2a4ef6a EP |
658 | |
659 | out_rem2: | |
07e00341 | 660 | device_remove_file(&sl->dev, &w1_slave_attr_id); |
d2a4ef6a EP |
661 | out_rem1: |
662 | device_remove_file(&sl->dev, &w1_slave_attr_name); | |
663 | out_unreg: | |
664 | device_unregister(&sl->dev); | |
665 | return err; | |
1da177e4 LT |
666 | } |
667 | ||
668 | static int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn) | |
669 | { | |
670 | struct w1_slave *sl; | |
671 | struct w1_family *f; | |
672 | int err; | |
673 | struct w1_netlink_msg msg; | |
674 | ||
dd00cc48 | 675 | sl = kzalloc(sizeof(struct w1_slave), GFP_KERNEL); |
1da177e4 LT |
676 | if (!sl) { |
677 | dev_err(&dev->dev, | |
678 | "%s: failed to allocate new slave device.\n", | |
679 | __func__); | |
680 | return -ENOMEM; | |
681 | } | |
682 | ||
1da177e4 LT |
683 | |
684 | sl->owner = THIS_MODULE; | |
685 | sl->master = dev; | |
686 | set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags); | |
687 | ||
12003375 | 688 | memset(&msg, 0, sizeof(msg)); |
1da177e4 LT |
689 | memcpy(&sl->reg_num, rn, sizeof(sl->reg_num)); |
690 | atomic_set(&sl->refcnt, 0); | |
3aca692d | 691 | init_completion(&sl->released); |
1da177e4 LT |
692 | |
693 | spin_lock(&w1_flock); | |
694 | f = w1_family_registered(rn->family); | |
695 | if (!f) { | |
99c5bfe9 | 696 | f= &w1_default_family; |
1da177e4 LT |
697 | dev_info(&dev->dev, "Family %x for %02x.%012llx.%02x is not registered.\n", |
698 | rn->family, rn->family, | |
699 | (unsigned long long)rn->id, rn->crc); | |
1da177e4 LT |
700 | } |
701 | __w1_family_get(f); | |
702 | spin_unlock(&w1_flock); | |
703 | ||
704 | sl->family = f; | |
705 | ||
706 | ||
707 | err = __w1_attach_slave_device(sl); | |
708 | if (err < 0) { | |
709 | dev_err(&dev->dev, "%s: Attaching %s failed.\n", __func__, | |
710 | sl->name); | |
711 | w1_family_put(sl->family); | |
712 | kfree(sl); | |
713 | return err; | |
714 | } | |
715 | ||
716 | sl->ttl = dev->slave_ttl; | |
717 | dev->slave_count++; | |
718 | ||
12003375 | 719 | memcpy(msg.id.id, rn, sizeof(msg.id)); |
1da177e4 LT |
720 | msg.type = W1_SLAVE_ADD; |
721 | w1_netlink_send(dev, &msg); | |
722 | ||
723 | return 0; | |
724 | } | |
725 | ||
c30c9b15 | 726 | void w1_slave_detach(struct w1_slave *sl) |
1da177e4 LT |
727 | { |
728 | struct w1_netlink_msg msg; | |
7785925d | 729 | |
7c8f5703 | 730 | dev_dbg(&sl->dev, "%s: detaching %s [%p].\n", __func__, sl->name, sl); |
1da177e4 | 731 | |
3aca692d | 732 | list_del(&sl->w1_slave_entry); |
1da177e4 | 733 | |
d2a4ef6a EP |
734 | if (sl->family->fops && sl->family->fops->remove_slave) |
735 | sl->family->fops->remove_slave(sl); | |
736 | ||
12003375 EP |
737 | memset(&msg, 0, sizeof(msg)); |
738 | memcpy(msg.id.id, &sl->reg_num, sizeof(msg.id)); | |
3aca692d EP |
739 | msg.type = W1_SLAVE_REMOVE; |
740 | w1_netlink_send(sl->master, &msg); | |
741 | ||
07e00341 | 742 | device_remove_file(&sl->dev, &w1_slave_attr_id); |
d2a4ef6a | 743 | device_remove_file(&sl->dev, &w1_slave_attr_name); |
1da177e4 | 744 | device_unregister(&sl->dev); |
1da177e4 | 745 | |
3aca692d EP |
746 | wait_for_completion(&sl->released); |
747 | kfree(sl); | |
1da177e4 LT |
748 | } |
749 | ||
12003375 EP |
750 | struct w1_master *w1_search_master_id(u32 id) |
751 | { | |
752 | struct w1_master *dev; | |
753 | int found = 0; | |
754 | ||
abd52a13 | 755 | mutex_lock(&w1_mlock); |
12003375 EP |
756 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
757 | if (dev->id == id) { | |
758 | found = 1; | |
759 | atomic_inc(&dev->refcnt); | |
760 | break; | |
761 | } | |
762 | } | |
abd52a13 | 763 | mutex_unlock(&w1_mlock); |
12003375 EP |
764 | |
765 | return (found)?dev:NULL; | |
766 | } | |
767 | ||
768 | struct w1_slave *w1_search_slave(struct w1_reg_num *id) | |
769 | { | |
770 | struct w1_master *dev; | |
771 | struct w1_slave *sl = NULL; | |
772 | int found = 0; | |
773 | ||
abd52a13 | 774 | mutex_lock(&w1_mlock); |
12003375 | 775 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
abd52a13 | 776 | mutex_lock(&dev->mutex); |
12003375 EP |
777 | list_for_each_entry(sl, &dev->slist, w1_slave_entry) { |
778 | if (sl->reg_num.family == id->family && | |
779 | sl->reg_num.id == id->id && | |
780 | sl->reg_num.crc == id->crc) { | |
781 | found = 1; | |
782 | atomic_inc(&dev->refcnt); | |
783 | atomic_inc(&sl->refcnt); | |
784 | break; | |
785 | } | |
786 | } | |
abd52a13 | 787 | mutex_unlock(&dev->mutex); |
12003375 EP |
788 | |
789 | if (found) | |
790 | break; | |
791 | } | |
abd52a13 | 792 | mutex_unlock(&w1_mlock); |
12003375 EP |
793 | |
794 | return (found)?sl:NULL; | |
795 | } | |
796 | ||
c30c9b15 | 797 | void w1_reconnect_slaves(struct w1_family *f, int attach) |
6adf87bd | 798 | { |
c30c9b15 | 799 | struct w1_slave *sl, *sln; |
6adf87bd EP |
800 | struct w1_master *dev; |
801 | ||
abd52a13 | 802 | mutex_lock(&w1_mlock); |
6adf87bd | 803 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
c30c9b15 DF |
804 | dev_dbg(&dev->dev, "Reconnecting slaves in device %s " |
805 | "for family %02x.\n", dev->name, f->fid); | |
806 | mutex_lock(&dev->mutex); | |
807 | list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) { | |
808 | /* If it is a new family, slaves with the default | |
809 | * family driver and are that family will be | |
810 | * connected. If the family is going away, devices | |
811 | * matching that family are reconneced. | |
812 | */ | |
813 | if ((attach && sl->family->fid == W1_FAMILY_DEFAULT | |
814 | && sl->reg_num.family == f->fid) || | |
815 | (!attach && sl->family->fid == f->fid)) { | |
816 | struct w1_reg_num rn; | |
817 | ||
818 | memcpy(&rn, &sl->reg_num, sizeof(rn)); | |
819 | w1_slave_detach(sl); | |
820 | ||
821 | w1_attach_slave_device(dev, &rn); | |
822 | } | |
823 | } | |
824 | dev_dbg(&dev->dev, "Reconnecting slaves in device %s " | |
825 | "has been finished.\n", dev->name); | |
826 | mutex_unlock(&dev->mutex); | |
6adf87bd | 827 | } |
abd52a13 | 828 | mutex_unlock(&w1_mlock); |
6adf87bd EP |
829 | } |
830 | ||
c30c9b15 | 831 | static void w1_slave_found(struct w1_master *dev, u64 rn) |
1da177e4 | 832 | { |
1da177e4 | 833 | struct w1_slave *sl; |
1da177e4 | 834 | struct w1_reg_num *tmp; |
0e65f828 | 835 | u64 rn_le = cpu_to_le64(rn); |
1da177e4 | 836 | |
c30c9b15 | 837 | atomic_inc(&dev->refcnt); |
7785925d | 838 | |
1da177e4 LT |
839 | tmp = (struct w1_reg_num *) &rn; |
840 | ||
cd7b28d3 DF |
841 | sl = w1_slave_search_device(dev, tmp); |
842 | if (sl) { | |
843 | set_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags); | |
844 | } else { | |
845 | if (rn && tmp->crc == w1_calc_crc8((u8 *)&rn_le, 7)) | |
846 | w1_attach_slave_device(dev, tmp); | |
1da177e4 | 847 | } |
7785925d | 848 | |
1da177e4 LT |
849 | atomic_dec(&dev->refcnt); |
850 | } | |
851 | ||
6b729861 EP |
852 | /** |
853 | * Performs a ROM Search & registers any devices found. | |
854 | * The 1-wire search is a simple binary tree search. | |
855 | * For each bit of the address, we read two bits and write one bit. | |
856 | * The bit written will put to sleep all devies that don't match that bit. | |
857 | * When the two reads differ, the direction choice is obvious. | |
858 | * When both bits are 0, we must choose a path to take. | |
859 | * When we can scan all 64 bits without having to choose a path, we are done. | |
860 | * | |
861 | * See "Application note 187 1-wire search algorithm" at www.maxim-ic.com | |
862 | * | |
863 | * @dev The master device to search | |
864 | * @cb Function to call when a device is found | |
865 | */ | |
12003375 | 866 | void w1_search(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb) |
1da177e4 | 867 | { |
6b729861 EP |
868 | u64 last_rn, rn, tmp64; |
869 | int i, slave_count = 0; | |
870 | int last_zero, last_device; | |
871 | int search_bit, desc_bit; | |
872 | u8 triplet_ret = 0; | |
1da177e4 | 873 | |
6b729861 EP |
874 | search_bit = 0; |
875 | rn = last_rn = 0; | |
876 | last_device = 0; | |
877 | last_zero = -1; | |
1da177e4 LT |
878 | |
879 | desc_bit = 64; | |
880 | ||
6b729861 EP |
881 | while ( !last_device && (slave_count++ < dev->max_slave_count) ) { |
882 | last_rn = rn; | |
1da177e4 LT |
883 | rn = 0; |
884 | ||
1da177e4 LT |
885 | /* |
886 | * Reset bus and all 1-wire device state machines | |
887 | * so they can respond to our requests. | |
888 | * | |
889 | * Return 0 - device(s) present, 1 - no devices present. | |
890 | */ | |
891 | if (w1_reset_bus(dev)) { | |
2da5bf80 | 892 | dev_dbg(&dev->dev, "No devices present on the wire.\n"); |
1da177e4 LT |
893 | break; |
894 | } | |
895 | ||
6b729861 | 896 | /* Start the search */ |
12003375 | 897 | w1_write_8(dev, search_type); |
1da177e4 | 898 | for (i = 0; i < 64; ++i) { |
6b729861 EP |
899 | /* Determine the direction/search bit */ |
900 | if (i == desc_bit) | |
901 | search_bit = 1; /* took the 0 path last time, so take the 1 path */ | |
902 | else if (i > desc_bit) | |
903 | search_bit = 0; /* take the 0 path on the next branch */ | |
1da177e4 | 904 | else |
6b729861 | 905 | search_bit = ((last_rn >> i) & 0x1); |
1da177e4 | 906 | |
6b729861 EP |
907 | /** Read two bits and write one bit */ |
908 | triplet_ret = w1_triplet(dev, search_bit); | |
909 | ||
910 | /* quit if no device responded */ | |
911 | if ( (triplet_ret & 0x03) == 0x03 ) | |
912 | break; | |
1da177e4 | 913 | |
6b729861 EP |
914 | /* If both directions were valid, and we took the 0 path... */ |
915 | if (triplet_ret == 0) | |
916 | last_zero = i; | |
1da177e4 | 917 | |
6b729861 EP |
918 | /* extract the direction taken & update the device number */ |
919 | tmp64 = (triplet_ret >> 2); | |
920 | rn |= (tmp64 << i); | |
0d671b27 | 921 | |
3c52e4e6 | 922 | if (kthread_should_stop()) { |
7dc8f527 | 923 | dev_dbg(&dev->dev, "Abort w1_search\n"); |
0d671b27 DF |
924 | return; |
925 | } | |
6b729861 | 926 | } |
7785925d | 927 | |
6b729861 EP |
928 | if ( (triplet_ret & 0x03) != 0x03 ) { |
929 | if ( (desc_bit == last_zero) || (last_zero < 0)) | |
930 | last_device = 1; | |
931 | desc_bit = last_zero; | |
c30c9b15 | 932 | cb(dev, rn); |
6b729861 | 933 | } |
1da177e4 LT |
934 | } |
935 | } | |
936 | ||
12003375 EP |
937 | void w1_search_process(struct w1_master *dev, u8 search_type) |
938 | { | |
939 | struct w1_slave *sl, *sln; | |
940 | ||
941 | list_for_each_entry(sl, &dev->slist, w1_slave_entry) | |
942 | clear_bit(W1_SLAVE_ACTIVE, (long *)&sl->flags); | |
943 | ||
944 | w1_search_devices(dev, search_type, w1_slave_found); | |
945 | ||
946 | list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) { | |
a2a6c74d | 947 | if (!test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags) && !--sl->ttl) |
12003375 | 948 | w1_slave_detach(sl); |
a2a6c74d | 949 | else if (test_bit(W1_SLAVE_ACTIVE, (unsigned long *)&sl->flags)) |
12003375 EP |
950 | sl->ttl = dev->slave_ttl; |
951 | } | |
952 | ||
953 | if (dev->search_count > 0) | |
954 | dev->search_count--; | |
955 | } | |
956 | ||
1da177e4 LT |
957 | int w1_process(void *data) |
958 | { | |
959 | struct w1_master *dev = (struct w1_master *) data; | |
3c52e4e6 DF |
960 | /* As long as w1_timeout is only set by a module parameter the sleep |
961 | * time can be calculated in jiffies once. | |
962 | */ | |
963 | const unsigned long jtime = msecs_to_jiffies(w1_timeout * 1000); | |
1da177e4 | 964 | |
3c52e4e6 | 965 | while (!kthread_should_stop()) { |
01e14d6d DF |
966 | if (dev->search_count) { |
967 | mutex_lock(&dev->mutex); | |
968 | w1_search_process(dev, W1_SEARCH); | |
969 | mutex_unlock(&dev->mutex); | |
970 | } | |
971 | ||
3e1d1d28 | 972 | try_to_freeze(); |
3c52e4e6 DF |
973 | __set_current_state(TASK_INTERRUPTIBLE); |
974 | ||
975 | if (kthread_should_stop()) | |
976 | break; | |
977 | ||
978 | /* Only sleep when the search is active. */ | |
979 | if (dev->search_count) | |
980 | schedule_timeout(jtime); | |
981 | else | |
982 | schedule(); | |
1da177e4 LT |
983 | } |
984 | ||
985 | atomic_dec(&dev->refcnt); | |
1da177e4 LT |
986 | |
987 | return 0; | |
988 | } | |
989 | ||
7785925d | 990 | static int w1_init(void) |
1da177e4 LT |
991 | { |
992 | int retval; | |
993 | ||
994 | printk(KERN_INFO "Driver for 1-wire Dallas network protocol.\n"); | |
995 | ||
12003375 EP |
996 | w1_init_netlink(); |
997 | ||
1da177e4 LT |
998 | retval = bus_register(&w1_bus_type); |
999 | if (retval) { | |
1000 | printk(KERN_ERR "Failed to register bus. err=%d.\n", retval); | |
1001 | goto err_out_exit_init; | |
1002 | } | |
1003 | ||
7f772ed8 | 1004 | retval = driver_register(&w1_master_driver); |
1da177e4 LT |
1005 | if (retval) { |
1006 | printk(KERN_ERR | |
1007 | "Failed to register master driver. err=%d.\n", | |
1008 | retval); | |
1009 | goto err_out_bus_unregister; | |
1010 | } | |
1011 | ||
7f772ed8 EP |
1012 | retval = driver_register(&w1_slave_driver); |
1013 | if (retval) { | |
1014 | printk(KERN_ERR | |
1015 | "Failed to register master driver. err=%d.\n", | |
1016 | retval); | |
1017 | goto err_out_master_unregister; | |
1018 | } | |
1019 | ||
1da177e4 LT |
1020 | return 0; |
1021 | ||
c30c9b15 DF |
1022 | #if 0 |
1023 | /* For undoing the slave register if there was a step after it. */ | |
7f772ed8 EP |
1024 | err_out_slave_unregister: |
1025 | driver_unregister(&w1_slave_driver); | |
c30c9b15 | 1026 | #endif |
7f772ed8 EP |
1027 | |
1028 | err_out_master_unregister: | |
1029 | driver_unregister(&w1_master_driver); | |
1da177e4 LT |
1030 | |
1031 | err_out_bus_unregister: | |
1032 | bus_unregister(&w1_bus_type); | |
1033 | ||
1034 | err_out_exit_init: | |
1035 | return retval; | |
1036 | } | |
1037 | ||
7785925d | 1038 | static void w1_fini(void) |
1da177e4 LT |
1039 | { |
1040 | struct w1_master *dev; | |
1da177e4 | 1041 | |
c30c9b15 | 1042 | /* Set netlink removal messages and some cleanup */ |
7785925d | 1043 | list_for_each_entry(dev, &w1_masters, w1_master_entry) |
1da177e4 | 1044 | __w1_remove_master_device(dev); |
1da177e4 | 1045 | |
12003375 EP |
1046 | w1_fini_netlink(); |
1047 | ||
7f772ed8 EP |
1048 | driver_unregister(&w1_slave_driver); |
1049 | driver_unregister(&w1_master_driver); | |
1da177e4 LT |
1050 | bus_unregister(&w1_bus_type); |
1051 | } | |
1052 | ||
1053 | module_init(w1_init); | |
1054 | module_exit(w1_fini); |