]>
Commit | Line | Data |
---|---|---|
c942fddf | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
1da177e4 | 2 | /* |
a8018766 | 3 | * Copyright (c) 2004 Evgeniy Polyakov <[email protected]> |
1da177e4 LT |
4 | */ |
5 | ||
6 | #include <linux/delay.h> | |
7 | #include <linux/kernel.h> | |
8 | #include <linux/module.h> | |
9 | #include <linux/moduleparam.h> | |
10 | #include <linux/list.h> | |
11 | #include <linux/interrupt.h> | |
12 | #include <linux/spinlock.h> | |
13 | #include <linux/timer.h> | |
14 | #include <linux/device.h> | |
15 | #include <linux/slab.h> | |
16 | #include <linux/sched.h> | |
674a396c | 17 | #include <linux/kthread.h> |
7dfb7103 | 18 | #include <linux/freezer.h> |
2eb79548 | 19 | #include <linux/hwmon.h> |
fae68031 | 20 | #include <linux/of.h> |
1da177e4 | 21 | |
60063497 | 22 | #include <linux/atomic.h> |
1da177e4 | 23 | |
de0d6dbd | 24 | #include "w1_internal.h" |
1da177e4 LT |
25 | #include "w1_netlink.h" |
26 | ||
de0d6dbd | 27 | #define W1_FAMILY_DEFAULT 0 |
48b7de66 CV |
28 | #define W1_FAMILY_DS28E04 0x1C /* for crc quirk */ |
29 | ||
de0d6dbd | 30 | |
1da177e4 | 31 | static int w1_timeout = 10; |
1da177e4 | 32 | module_param_named(timeout, w1_timeout, int, 0); |
b3be177a | 33 | MODULE_PARM_DESC(timeout, "time in seconds between automatic slave searches"); |
50fa2951 | 34 | |
ecaed1a2 | 35 | static int w1_timeout_us; |
c3098356 | 36 | module_param_named(timeout_us, w1_timeout_us, int, 0); |
a46b195c WY |
37 | MODULE_PARM_DESC(timeout_us, |
38 | "time in microseconds between automatic slave searches"); | |
50fa2951 | 39 | |
b3be177a DF |
40 | /* A search stops when w1_max_slave_count devices have been found in that |
41 | * search. The next search will start over and detect the same set of devices | |
42 | * on a static 1-wire bus. Memory is not allocated based on this number, just | |
43 | * on the number of devices known to the kernel. Having a high number does not | |
44 | * consume additional resources. As a special case, if there is only one | |
45 | * device on the network and w1_max_slave_count is set to 1, the device id can | |
46 | * be read directly skipping the normal slower search process. | |
47 | */ | |
50fa2951 | 48 | int w1_max_slave_count = 64; |
1da177e4 | 49 | module_param_named(max_slave_count, w1_max_slave_count, int, 0); |
b3be177a DF |
50 | MODULE_PARM_DESC(max_slave_count, |
51 | "maximum number of slaves detected in a search"); | |
50fa2951 AD |
52 | |
53 | int w1_max_slave_ttl = 10; | |
1da177e4 | 54 | module_param_named(slave_ttl, w1_max_slave_ttl, int, 0); |
b3be177a DF |
55 | MODULE_PARM_DESC(slave_ttl, |
56 | "Number of searches not seeing a slave before it will be removed"); | |
1da177e4 | 57 | |
abd52a13 | 58 | DEFINE_MUTEX(w1_mlock); |
1da177e4 LT |
59 | LIST_HEAD(w1_masters); |
60 | ||
1da177e4 LT |
61 | static int w1_master_probe(struct device *dev) |
62 | { | |
63 | return -ENODEV; | |
64 | } | |
65 | ||
1da177e4 LT |
66 | static void w1_master_release(struct device *dev) |
67 | { | |
db2d0008 | 68 | struct w1_master *md = dev_to_w1_master(dev); |
3aca692d EP |
69 | |
70 | dev_dbg(dev, "%s: Releasing %s.\n", __func__, md->name); | |
3aca692d EP |
71 | memset(md, 0, sizeof(struct w1_master) + sizeof(struct w1_bus_master)); |
72 | kfree(md); | |
1da177e4 LT |
73 | } |
74 | ||
75 | static void w1_slave_release(struct device *dev) | |
76 | { | |
db2d0008 | 77 | struct w1_slave *sl = dev_to_w1_slave(dev); |
3aca692d | 78 | |
9fcbbac5 | 79 | dev_dbg(dev, "%s: Releasing %s [%p]\n", __func__, sl->name, sl); |
3aca692d EP |
80 | |
81 | w1_family_put(sl->family); | |
82 | sl->master->slave_count--; | |
1da177e4 LT |
83 | } |
84 | ||
5b187b3c | 85 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 86 | { |
3aca692d | 87 | struct w1_slave *sl = dev_to_w1_slave(dev); |
d2a4ef6a | 88 | |
3aca692d | 89 | return sprintf(buf, "%s\n", sl->name); |
1da177e4 | 90 | } |
5b187b3c | 91 | static DEVICE_ATTR_RO(name); |
1da177e4 | 92 | |
5b187b3c | 93 | static ssize_t id_show(struct device *dev, |
07e00341 | 94 | struct device_attribute *attr, char *buf) |
1da177e4 | 95 | { |
07e00341 DF |
96 | struct w1_slave *sl = dev_to_w1_slave(dev); |
97 | ssize_t count = sizeof(sl->reg_num); | |
d2a4ef6a | 98 | |
07e00341 | 99 | memcpy(buf, (u8 *)&sl->reg_num, count); |
d2a4ef6a | 100 | return count; |
3aca692d | 101 | } |
5b187b3c | 102 | static DEVICE_ATTR_RO(id); |
d2a4ef6a | 103 | |
5b187b3c GKH |
104 | static struct attribute *w1_slave_attrs[] = { |
105 | &dev_attr_name.attr, | |
106 | &dev_attr_id.attr, | |
107 | NULL, | |
108 | }; | |
109 | ATTRIBUTE_GROUPS(w1_slave); | |
7785925d | 110 | |
d2a4ef6a | 111 | /* Default family */ |
f522d239 | 112 | |
36c27a65 | 113 | static ssize_t rw_write(struct file *filp, struct kobject *kobj, |
699e5f2f | 114 | const struct bin_attribute *bin_attr, char *buf, loff_t off, |
36c27a65 | 115 | size_t count) |
f522d239 EP |
116 | { |
117 | struct w1_slave *sl = kobj_to_w1_slave(kobj); | |
118 | ||
abd52a13 | 119 | mutex_lock(&sl->master->mutex); |
f522d239 EP |
120 | if (w1_reset_select_slave(sl)) { |
121 | count = 0; | |
122 | goto out_up; | |
123 | } | |
124 | ||
125 | w1_write_block(sl->master, buf, count); | |
126 | ||
127 | out_up: | |
abd52a13 | 128 | mutex_unlock(&sl->master->mutex); |
f522d239 EP |
129 | return count; |
130 | } | |
131 | ||
36c27a65 | 132 | static ssize_t rw_read(struct file *filp, struct kobject *kobj, |
699e5f2f TW |
133 | const struct bin_attribute *bin_attr, char *buf, |
134 | loff_t off, size_t count) | |
f522d239 EP |
135 | { |
136 | struct w1_slave *sl = kobj_to_w1_slave(kobj); | |
137 | ||
abd52a13 | 138 | mutex_lock(&sl->master->mutex); |
f522d239 | 139 | w1_read_block(sl->master, buf, count); |
abd52a13 | 140 | mutex_unlock(&sl->master->mutex); |
f522d239 EP |
141 | return count; |
142 | } | |
143 | ||
699e5f2f | 144 | static const BIN_ATTR_RW(rw, PAGE_SIZE); |
36c27a65 | 145 | |
699e5f2f | 146 | static const struct bin_attribute *const w1_slave_bin_attrs[] = { |
36c27a65 GKH |
147 | &bin_attr_rw, |
148 | NULL, | |
f522d239 EP |
149 | }; |
150 | ||
36c27a65 | 151 | static const struct attribute_group w1_slave_default_group = { |
699e5f2f | 152 | .bin_attrs_new = w1_slave_bin_attrs, |
36c27a65 | 153 | }; |
f522d239 | 154 | |
36c27a65 GKH |
155 | static const struct attribute_group *w1_slave_default_groups[] = { |
156 | &w1_slave_default_group, | |
157 | NULL, | |
158 | }; | |
f522d239 | 159 | |
57de2dfc | 160 | static const struct w1_family_ops w1_default_fops = { |
36c27a65 | 161 | .groups = w1_slave_default_groups, |
f522d239 EP |
162 | }; |
163 | ||
164 | static struct w1_family w1_default_family = { | |
165 | .fops = &w1_default_fops, | |
166 | }; | |
d2a4ef6a | 167 | |
2a81ada3 | 168 | static int w1_uevent(const struct device *dev, struct kobj_uevent_env *env); |
7785925d | 169 | |
a5251cd9 | 170 | static const struct bus_type w1_bus_type = { |
1da177e4 | 171 | .name = "w1", |
312c004d | 172 | .uevent = w1_uevent, |
1da177e4 LT |
173 | }; |
174 | ||
7f772ed8 EP |
175 | struct device_driver w1_master_driver = { |
176 | .name = "w1_master_driver", | |
1da177e4 LT |
177 | .bus = &w1_bus_type, |
178 | .probe = w1_master_probe, | |
1da177e4 LT |
179 | }; |
180 | ||
7f772ed8 | 181 | struct device w1_master_device = { |
1da177e4 LT |
182 | .parent = NULL, |
183 | .bus = &w1_bus_type, | |
40f91de6 | 184 | .init_name = "w1 bus master", |
7f772ed8 | 185 | .driver = &w1_master_driver, |
1da177e4 LT |
186 | .release = &w1_master_release |
187 | }; | |
188 | ||
2c5bfdac | 189 | static struct device_driver w1_slave_driver = { |
7f772ed8 EP |
190 | .name = "w1_slave_driver", |
191 | .bus = &w1_bus_type, | |
192 | }; | |
193 | ||
2c5bfdac | 194 | #if 0 |
7f772ed8 EP |
195 | struct device w1_slave_device = { |
196 | .parent = NULL, | |
197 | .bus = &w1_bus_type, | |
40f91de6 | 198 | .init_name = "w1 bus slave", |
7f772ed8 | 199 | .driver = &w1_slave_driver, |
3aca692d | 200 | .release = &w1_slave_release |
7f772ed8 | 201 | }; |
2c5bfdac | 202 | #endif /* 0 */ |
7f772ed8 | 203 | |
060b8845 | 204 | static ssize_t w1_master_attribute_show_name(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 205 | { |
db2d0008 | 206 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 207 | ssize_t count; |
7785925d | 208 | |
abd52a13 | 209 | mutex_lock(&md->mutex); |
1da177e4 | 210 | count = sprintf(buf, "%s\n", md->name); |
abd52a13 | 211 | mutex_unlock(&md->mutex); |
1da177e4 LT |
212 | |
213 | return count; | |
214 | } | |
215 | ||
2a9d0c17 EP |
216 | static ssize_t w1_master_attribute_store_search(struct device * dev, |
217 | struct device_attribute *attr, | |
218 | const char * buf, size_t count) | |
219 | { | |
6a158c0d | 220 | long tmp; |
db2d0008 | 221 | struct w1_master *md = dev_to_w1_master(dev); |
bf4228f0 | 222 | int ret; |
2a9d0c17 | 223 | |
bf4228f0 JH |
224 | ret = kstrtol(buf, 0, &tmp); |
225 | if (ret) | |
226 | return ret; | |
6a158c0d | 227 | |
abd52a13 | 228 | mutex_lock(&md->mutex); |
6a158c0d | 229 | md->search_count = tmp; |
abd52a13 | 230 | mutex_unlock(&md->mutex); |
af8c7237 DF |
231 | /* Only wake if it is going to be searching. */ |
232 | if (tmp) | |
233 | wake_up_process(md->thread); | |
2a9d0c17 EP |
234 | |
235 | return count; | |
236 | } | |
237 | ||
238 | static ssize_t w1_master_attribute_show_search(struct device *dev, | |
239 | struct device_attribute *attr, | |
240 | char *buf) | |
241 | { | |
db2d0008 | 242 | struct w1_master *md = dev_to_w1_master(dev); |
2a9d0c17 EP |
243 | ssize_t count; |
244 | ||
abd52a13 | 245 | mutex_lock(&md->mutex); |
2a9d0c17 | 246 | count = sprintf(buf, "%d\n", md->search_count); |
abd52a13 | 247 | mutex_unlock(&md->mutex); |
2a9d0c17 EP |
248 | |
249 | return count; | |
250 | } | |
251 | ||
6a158c0d DF |
252 | static ssize_t w1_master_attribute_store_pullup(struct device *dev, |
253 | struct device_attribute *attr, | |
254 | const char *buf, size_t count) | |
255 | { | |
256 | long tmp; | |
257 | struct w1_master *md = dev_to_w1_master(dev); | |
bf4228f0 | 258 | int ret; |
6a158c0d | 259 | |
bf4228f0 JH |
260 | ret = kstrtol(buf, 0, &tmp); |
261 | if (ret) | |
262 | return ret; | |
6a158c0d DF |
263 | |
264 | mutex_lock(&md->mutex); | |
265 | md->enable_pullup = tmp; | |
266 | mutex_unlock(&md->mutex); | |
6a158c0d DF |
267 | |
268 | return count; | |
269 | } | |
270 | ||
271 | static ssize_t w1_master_attribute_show_pullup(struct device *dev, | |
272 | struct device_attribute *attr, | |
273 | char *buf) | |
274 | { | |
275 | struct w1_master *md = dev_to_w1_master(dev); | |
276 | ssize_t count; | |
277 | ||
278 | mutex_lock(&md->mutex); | |
279 | count = sprintf(buf, "%d\n", md->enable_pullup); | |
280 | mutex_unlock(&md->mutex); | |
281 | ||
282 | return count; | |
283 | } | |
284 | ||
060b8845 | 285 | static ssize_t w1_master_attribute_show_pointer(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 286 | { |
db2d0008 | 287 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 288 | ssize_t count; |
7785925d | 289 | |
abd52a13 | 290 | mutex_lock(&md->mutex); |
1da177e4 | 291 | count = sprintf(buf, "0x%p\n", md->bus_master); |
abd52a13 | 292 | mutex_unlock(&md->mutex); |
1da177e4 LT |
293 | return count; |
294 | } | |
295 | ||
060b8845 | 296 | static ssize_t w1_master_attribute_show_timeout(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 297 | { |
a8c4dda9 | 298 | return sprintf(buf, "%d\n", w1_timeout); |
1da177e4 LT |
299 | } |
300 | ||
c3098356 DK |
301 | static ssize_t w1_master_attribute_show_timeout_us(struct device *dev, |
302 | struct device_attribute *attr, char *buf) | |
303 | { | |
a8c4dda9 | 304 | return sprintf(buf, "%d\n", w1_timeout_us); |
c3098356 DK |
305 | } |
306 | ||
a1613056 DF |
307 | static ssize_t w1_master_attribute_store_max_slave_count(struct device *dev, |
308 | struct device_attribute *attr, const char *buf, size_t count) | |
309 | { | |
a7155f4e | 310 | int tmp; |
a1613056 DF |
311 | struct w1_master *md = dev_to_w1_master(dev); |
312 | ||
b9c11a23 | 313 | if (kstrtoint(buf, 0, &tmp) || tmp < 1) |
a1613056 DF |
314 | return -EINVAL; |
315 | ||
316 | mutex_lock(&md->mutex); | |
317 | md->max_slave_count = tmp; | |
318 | /* allow each time the max_slave_count is updated */ | |
319 | clear_bit(W1_WARN_MAX_COUNT, &md->flags); | |
320 | mutex_unlock(&md->mutex); | |
321 | ||
322 | return count; | |
323 | } | |
324 | ||
060b8845 | 325 | static ssize_t w1_master_attribute_show_max_slave_count(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, "%d\n", md->max_slave_count); |
abd52a13 | 332 | mutex_unlock(&md->mutex); |
1da177e4 LT |
333 | return count; |
334 | } | |
335 | ||
060b8845 | 336 | static ssize_t w1_master_attribute_show_attempts(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, "%lu\n", md->attempts); |
abd52a13 | 343 | mutex_unlock(&md->mutex); |
1da177e4 LT |
344 | return count; |
345 | } | |
346 | ||
060b8845 | 347 | static ssize_t w1_master_attribute_show_slave_count(struct device *dev, struct device_attribute *attr, char *buf) |
1da177e4 | 348 | { |
db2d0008 | 349 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 350 | ssize_t count; |
7785925d | 351 | |
abd52a13 | 352 | mutex_lock(&md->mutex); |
1da177e4 | 353 | count = sprintf(buf, "%d\n", md->slave_count); |
abd52a13 | 354 | mutex_unlock(&md->mutex); |
1da177e4 LT |
355 | return count; |
356 | } | |
357 | ||
9b467411 DF |
358 | static ssize_t w1_master_attribute_show_slaves(struct device *dev, |
359 | struct device_attribute *attr, char *buf) | |
1da177e4 | 360 | { |
db2d0008 | 361 | struct w1_master *md = dev_to_w1_master(dev); |
1da177e4 | 362 | int c = PAGE_SIZE; |
9fcbbac5 DF |
363 | struct list_head *ent, *n; |
364 | struct w1_slave *sl = NULL; | |
1da177e4 | 365 | |
9fcbbac5 | 366 | mutex_lock(&md->list_mutex); |
1da177e4 | 367 | |
9fcbbac5 DF |
368 | list_for_each_safe(ent, n, &md->slist) { |
369 | sl = list_entry(ent, struct w1_slave, w1_slave_entry); | |
1da177e4 | 370 | |
9fcbbac5 | 371 | c -= snprintf(buf + PAGE_SIZE - c, c, "%s\n", sl->name); |
1da177e4 | 372 | } |
9fcbbac5 DF |
373 | if (!sl) |
374 | c -= snprintf(buf + PAGE_SIZE - c, c, "not found.\n"); | |
1da177e4 | 375 | |
9fcbbac5 | 376 | mutex_unlock(&md->list_mutex); |
1da177e4 LT |
377 | |
378 | return PAGE_SIZE - c; | |
379 | } | |
380 | ||
9b467411 DF |
381 | static ssize_t w1_master_attribute_show_add(struct device *dev, |
382 | struct device_attribute *attr, char *buf) | |
383 | { | |
384 | int c = PAGE_SIZE; | |
385 | c -= snprintf(buf+PAGE_SIZE - c, c, | |
386 | "write device id xx-xxxxxxxxxxxx to add slave\n"); | |
387 | return PAGE_SIZE - c; | |
388 | } | |
389 | ||
390 | static int w1_atoreg_num(struct device *dev, const char *buf, size_t count, | |
391 | struct w1_reg_num *rn) | |
392 | { | |
393 | unsigned int family; | |
394 | unsigned long long id; | |
395 | int i; | |
396 | u64 rn64_le; | |
397 | ||
398 | /* The CRC value isn't read from the user because the sysfs directory | |
399 | * doesn't include it and most messages from the bus search don't | |
400 | * print it either. It would be unreasonable for the user to then | |
401 | * provide it. | |
402 | */ | |
403 | const char *error_msg = "bad slave string format, expecting " | |
404 | "ff-dddddddddddd\n"; | |
405 | ||
406 | if (buf[2] != '-') { | |
407 | dev_err(dev, "%s", error_msg); | |
408 | return -EINVAL; | |
409 | } | |
410 | i = sscanf(buf, "%02x-%012llx", &family, &id); | |
411 | if (i != 2) { | |
412 | dev_err(dev, "%s", error_msg); | |
413 | return -EINVAL; | |
414 | } | |
415 | rn->family = family; | |
416 | rn->id = id; | |
417 | ||
418 | rn64_le = cpu_to_le64(*(u64 *)rn); | |
419 | rn->crc = w1_calc_crc8((u8 *)&rn64_le, 7); | |
420 | ||
421 | #if 0 | |
422 | dev_info(dev, "With CRC device is %02x.%012llx.%02x.\n", | |
423 | rn->family, (unsigned long long)rn->id, rn->crc); | |
424 | #endif | |
425 | ||
426 | return 0; | |
427 | } | |
428 | ||
429 | /* Searches the slaves in the w1_master and returns a pointer or NULL. | |
9fcbbac5 | 430 | * Note: must not hold list_mutex |
9b467411 | 431 | */ |
70b34d2e | 432 | struct w1_slave *w1_slave_search_device(struct w1_master *dev, |
9b467411 DF |
433 | struct w1_reg_num *rn) |
434 | { | |
435 | struct w1_slave *sl; | |
9fcbbac5 | 436 | mutex_lock(&dev->list_mutex); |
9b467411 DF |
437 | list_for_each_entry(sl, &dev->slist, w1_slave_entry) { |
438 | if (sl->reg_num.family == rn->family && | |
439 | sl->reg_num.id == rn->id && | |
440 | sl->reg_num.crc == rn->crc) { | |
9fcbbac5 | 441 | mutex_unlock(&dev->list_mutex); |
9b467411 DF |
442 | return sl; |
443 | } | |
444 | } | |
9fcbbac5 | 445 | mutex_unlock(&dev->list_mutex); |
9b467411 DF |
446 | return NULL; |
447 | } | |
448 | ||
449 | static ssize_t w1_master_attribute_store_add(struct device *dev, | |
450 | struct device_attribute *attr, | |
451 | const char *buf, size_t count) | |
452 | { | |
453 | struct w1_master *md = dev_to_w1_master(dev); | |
454 | struct w1_reg_num rn; | |
455 | struct w1_slave *sl; | |
456 | ssize_t result = count; | |
457 | ||
458 | if (w1_atoreg_num(dev, buf, count, &rn)) | |
459 | return -EINVAL; | |
460 | ||
461 | mutex_lock(&md->mutex); | |
462 | sl = w1_slave_search_device(md, &rn); | |
463 | /* It would be nice to do a targeted search one the one-wire bus | |
464 | * for the new device to see if it is out there or not. But the | |
465 | * current search doesn't support that. | |
466 | */ | |
467 | if (sl) { | |
468 | dev_info(dev, "Device %s already exists\n", sl->name); | |
469 | result = -EINVAL; | |
470 | } else { | |
471 | w1_attach_slave_device(md, &rn); | |
472 | } | |
473 | mutex_unlock(&md->mutex); | |
474 | ||
475 | return result; | |
476 | } | |
477 | ||
478 | static ssize_t w1_master_attribute_show_remove(struct device *dev, | |
479 | struct device_attribute *attr, char *buf) | |
480 | { | |
481 | int c = PAGE_SIZE; | |
482 | c -= snprintf(buf+PAGE_SIZE - c, c, | |
483 | "write device id xx-xxxxxxxxxxxx to remove slave\n"); | |
484 | return PAGE_SIZE - c; | |
485 | } | |
486 | ||
487 | static ssize_t w1_master_attribute_store_remove(struct device *dev, | |
488 | struct device_attribute *attr, | |
489 | const char *buf, size_t count) | |
490 | { | |
491 | struct w1_master *md = dev_to_w1_master(dev); | |
492 | struct w1_reg_num rn; | |
493 | struct w1_slave *sl; | |
9033ff4c | 494 | ssize_t result; |
9b467411 DF |
495 | |
496 | if (w1_atoreg_num(dev, buf, count, &rn)) | |
497 | return -EINVAL; | |
498 | ||
499 | mutex_lock(&md->mutex); | |
500 | sl = w1_slave_search_device(md, &rn); | |
501 | if (sl) { | |
9fcbbac5 DF |
502 | result = w1_slave_detach(sl); |
503 | /* refcnt 0 means it was detached in the call */ | |
504 | if (result == 0) | |
505 | result = count; | |
9b467411 | 506 | } else { |
56813b24 | 507 | dev_info(dev, "Device %02x-%012llx doesn't exist\n", rn.family, |
9b467411 DF |
508 | (unsigned long long)rn.id); |
509 | result = -EINVAL; | |
510 | } | |
511 | mutex_unlock(&md->mutex); | |
512 | ||
513 | return result; | |
514 | } | |
515 | ||
7785925d EP |
516 | #define W1_MASTER_ATTR_RO(_name, _mode) \ |
517 | struct device_attribute w1_master_attribute_##_name = \ | |
518 | __ATTR(w1_master_##_name, _mode, \ | |
519 | w1_master_attribute_show_##_name, NULL) | |
520 | ||
2a9d0c17 EP |
521 | #define W1_MASTER_ATTR_RW(_name, _mode) \ |
522 | struct device_attribute w1_master_attribute_##_name = \ | |
523 | __ATTR(w1_master_##_name, _mode, \ | |
524 | w1_master_attribute_show_##_name, \ | |
525 | w1_master_attribute_store_##_name) | |
526 | ||
7785925d EP |
527 | static W1_MASTER_ATTR_RO(name, S_IRUGO); |
528 | static W1_MASTER_ATTR_RO(slaves, S_IRUGO); | |
529 | static W1_MASTER_ATTR_RO(slave_count, S_IRUGO); | |
a1613056 | 530 | static W1_MASTER_ATTR_RW(max_slave_count, S_IRUGO | S_IWUSR | S_IWGRP); |
7785925d EP |
531 | static W1_MASTER_ATTR_RO(attempts, S_IRUGO); |
532 | static W1_MASTER_ATTR_RO(timeout, S_IRUGO); | |
c3098356 | 533 | static W1_MASTER_ATTR_RO(timeout_us, S_IRUGO); |
7785925d | 534 | static W1_MASTER_ATTR_RO(pointer, S_IRUGO); |
12aa4c64 BS |
535 | static W1_MASTER_ATTR_RW(search, S_IRUGO | S_IWUSR | S_IWGRP); |
536 | static W1_MASTER_ATTR_RW(pullup, S_IRUGO | S_IWUSR | S_IWGRP); | |
537 | static W1_MASTER_ATTR_RW(add, S_IRUGO | S_IWUSR | S_IWGRP); | |
538 | static W1_MASTER_ATTR_RW(remove, S_IRUGO | S_IWUSR | S_IWGRP); | |
7785925d EP |
539 | |
540 | static struct attribute *w1_master_default_attrs[] = { | |
541 | &w1_master_attribute_name.attr, | |
542 | &w1_master_attribute_slaves.attr, | |
543 | &w1_master_attribute_slave_count.attr, | |
544 | &w1_master_attribute_max_slave_count.attr, | |
545 | &w1_master_attribute_attempts.attr, | |
546 | &w1_master_attribute_timeout.attr, | |
c3098356 | 547 | &w1_master_attribute_timeout_us.attr, |
7785925d | 548 | &w1_master_attribute_pointer.attr, |
2a9d0c17 | 549 | &w1_master_attribute_search.attr, |
6a158c0d | 550 | &w1_master_attribute_pullup.attr, |
9b467411 DF |
551 | &w1_master_attribute_add.attr, |
552 | &w1_master_attribute_remove.attr, | |
7785925d | 553 | NULL |
1da177e4 LT |
554 | }; |
555 | ||
a890d56a | 556 | static const struct attribute_group w1_master_defattr_group = { |
7785925d | 557 | .attrs = w1_master_default_attrs, |
1da177e4 LT |
558 | }; |
559 | ||
7785925d EP |
560 | int w1_create_master_attributes(struct w1_master *master) |
561 | { | |
562 | return sysfs_create_group(&master->dev.kobj, &w1_master_defattr_group); | |
563 | } | |
564 | ||
c30c9b15 | 565 | void w1_destroy_master_attributes(struct w1_master *master) |
7785925d EP |
566 | { |
567 | sysfs_remove_group(&master->dev.kobj, &w1_master_defattr_group); | |
568 | } | |
569 | ||
2a81ada3 | 570 | static int w1_uevent(const struct device *dev, struct kobj_uevent_env *env) |
7f772ed8 | 571 | { |
2a81ada3 GKH |
572 | const struct w1_master *md = NULL; |
573 | const struct w1_slave *sl = NULL; | |
574 | const char *event_owner, *name; | |
526be416 | 575 | int err = 0; |
7f772ed8 EP |
576 | |
577 | if (dev->driver == &w1_master_driver) { | |
578 | md = container_of(dev, struct w1_master, dev); | |
579 | event_owner = "master"; | |
580 | name = md->name; | |
581 | } else if (dev->driver == &w1_slave_driver) { | |
582 | sl = container_of(dev, struct w1_slave, dev); | |
583 | event_owner = "slave"; | |
584 | name = sl->name; | |
585 | } else { | |
312c004d | 586 | dev_dbg(dev, "Unknown event.\n"); |
7f772ed8 EP |
587 | return -EINVAL; |
588 | } | |
589 | ||
c6976a4e | 590 | dev_dbg(dev, "Hotplug event for %s %s, bus_id=%s.\n", |
40f91de6 | 591 | event_owner, name, dev_name(dev)); |
7f772ed8 EP |
592 | |
593 | if (dev->driver != &w1_slave_driver || !sl) | |
526be416 | 594 | goto end; |
7f772ed8 | 595 | |
7eff2e7a | 596 | err = add_uevent_var(env, "W1_FID=%02X", sl->reg_num.family); |
7f772ed8 | 597 | if (err) |
526be416 | 598 | goto end; |
7f772ed8 | 599 | |
7eff2e7a KS |
600 | err = add_uevent_var(env, "W1_SLAVE_ID=%024LX", |
601 | (unsigned long long)sl->reg_num.id); | |
526be416 DN |
602 | end: |
603 | return err; | |
604 | } | |
7f772ed8 | 605 | |
18d7f891 | 606 | static int w1_family_notify(unsigned long action, struct w1_slave *sl) |
47eba33a | 607 | { |
07f8569f | 608 | const struct w1_family_ops *fops; |
47eba33a GKH |
609 | int err; |
610 | ||
36c27a65 | 611 | fops = sl->family->fops; |
47eba33a | 612 | |
2962aece HFV |
613 | if (!fops) |
614 | return 0; | |
615 | ||
47eba33a GKH |
616 | switch (action) { |
617 | case BUS_NOTIFY_ADD_DEVICE: | |
47eba33a | 618 | /* if the family driver needs to initialize something... */ |
36c27a65 GKH |
619 | if (fops->add_slave) { |
620 | err = fops->add_slave(sl); | |
621 | if (err < 0) { | |
622 | dev_err(&sl->dev, | |
623 | "add_slave() call failed. err=%d\n", | |
624 | err); | |
625 | return err; | |
626 | } | |
627 | } | |
628 | if (fops->groups) { | |
629 | err = sysfs_create_groups(&sl->dev.kobj, fops->groups); | |
630 | if (err) { | |
631 | dev_err(&sl->dev, | |
632 | "sysfs group creation failed. err=%d\n", | |
633 | err); | |
634 | return err; | |
635 | } | |
47eba33a | 636 | } |
2eb79548 JRN |
637 | if (IS_REACHABLE(CONFIG_HWMON) && fops->chip_info) { |
638 | struct device *hwmon | |
639 | = hwmon_device_register_with_info(&sl->dev, | |
640 | "w1_slave_temp", sl, | |
641 | fops->chip_info, | |
642 | NULL); | |
643 | if (IS_ERR(hwmon)) { | |
644 | dev_warn(&sl->dev, | |
645 | "could not create hwmon device\n"); | |
646 | } else { | |
647 | sl->hwmon = hwmon; | |
648 | } | |
649 | } | |
47eba33a GKH |
650 | break; |
651 | case BUS_NOTIFY_DEL_DEVICE: | |
2eb79548 JRN |
652 | if (IS_REACHABLE(CONFIG_HWMON) && fops->chip_info && |
653 | sl->hwmon) | |
654 | hwmon_device_unregister(sl->hwmon); | |
36c27a65 | 655 | if (fops->remove_slave) |
47eba33a | 656 | sl->family->fops->remove_slave(sl); |
36c27a65 GKH |
657 | if (fops->groups) |
658 | sysfs_remove_groups(&sl->dev.kobj, fops->groups); | |
47eba33a GKH |
659 | break; |
660 | } | |
661 | return 0; | |
662 | } | |
663 | ||
1da177e4 LT |
664 | static int __w1_attach_slave_device(struct w1_slave *sl) |
665 | { | |
666 | int err; | |
667 | ||
668 | sl->dev.parent = &sl->master->dev; | |
7f772ed8 | 669 | sl->dev.driver = &w1_slave_driver; |
1da177e4 LT |
670 | sl->dev.bus = &w1_bus_type; |
671 | sl->dev.release = &w1_slave_release; | |
5b187b3c | 672 | sl->dev.groups = w1_slave_groups; |
fae68031 DM |
673 | sl->dev.of_node = of_find_matching_node(sl->master->dev.of_node, |
674 | sl->family->of_match_table); | |
1da177e4 | 675 | |
40f91de6 | 676 | dev_set_name(&sl->dev, "%02x-%012llx", |
6b729861 EP |
677 | (unsigned int) sl->reg_num.family, |
678 | (unsigned long long) sl->reg_num.id); | |
679 | snprintf(&sl->name[0], sizeof(sl->name), | |
680 | "%02x-%012llx", | |
681 | (unsigned int) sl->reg_num.family, | |
682 | (unsigned long long) sl->reg_num.id); | |
1da177e4 | 683 | |
c6976a4e | 684 | dev_dbg(&sl->dev, "%s: registering %s as %p.\n", __func__, |
40f91de6 | 685 | dev_name(&sl->dev), sl); |
1da177e4 | 686 | |
18d7f891 DF |
687 | /* suppress for w1_family_notify before sending KOBJ_ADD */ |
688 | dev_set_uevent_suppress(&sl->dev, true); | |
689 | ||
1da177e4 LT |
690 | err = device_register(&sl->dev); |
691 | if (err < 0) { | |
692 | dev_err(&sl->dev, | |
6b729861 | 693 | "Device registration [%s] failed. err=%d\n", |
40f91de6 | 694 | dev_name(&sl->dev), err); |
51cbbcd6 | 695 | of_node_put(sl->dev.of_node); |
0ec4eb71 | 696 | put_device(&sl->dev); |
1da177e4 LT |
697 | return err; |
698 | } | |
18d7f891 | 699 | w1_family_notify(BUS_NOTIFY_ADD_DEVICE, sl); |
1da177e4 | 700 | |
47eba33a GKH |
701 | dev_set_uevent_suppress(&sl->dev, false); |
702 | kobject_uevent(&sl->dev.kobj, KOBJ_ADD); | |
1da177e4 | 703 | |
9fcbbac5 | 704 | mutex_lock(&sl->master->list_mutex); |
1da177e4 | 705 | list_add_tail(&sl->w1_slave_entry, &sl->master->slist); |
9fcbbac5 | 706 | mutex_unlock(&sl->master->list_mutex); |
1da177e4 LT |
707 | |
708 | return 0; | |
709 | } | |
710 | ||
70b34d2e | 711 | int w1_attach_slave_device(struct w1_master *dev, struct w1_reg_num *rn) |
1da177e4 LT |
712 | { |
713 | struct w1_slave *sl; | |
714 | struct w1_family *f; | |
715 | int err; | |
716 | struct w1_netlink_msg msg; | |
717 | ||
dd00cc48 | 718 | sl = kzalloc(sizeof(struct w1_slave), GFP_KERNEL); |
1da177e4 LT |
719 | if (!sl) { |
720 | dev_err(&dev->dev, | |
721 | "%s: failed to allocate new slave device.\n", | |
722 | __func__); | |
723 | return -ENOMEM; | |
724 | } | |
725 | ||
1da177e4 LT |
726 | |
727 | sl->owner = THIS_MODULE; | |
728 | sl->master = dev; | |
bb670937 | 729 | set_bit(W1_SLAVE_ACTIVE, &sl->flags); |
1da177e4 | 730 | |
12003375 | 731 | memset(&msg, 0, sizeof(msg)); |
1da177e4 | 732 | memcpy(&sl->reg_num, rn, sizeof(sl->reg_num)); |
9fcbbac5 DF |
733 | atomic_set(&sl->refcnt, 1); |
734 | atomic_inc(&sl->master->refcnt); | |
2c927c0c | 735 | dev->slave_count++; |
f6887531 AW |
736 | dev_info(&dev->dev, "Attaching one wire slave %02x.%012llx crc %02x\n", |
737 | rn->family, (unsigned long long)rn->id, rn->crc); | |
1da177e4 | 738 | |
bc04d76d HFV |
739 | /* slave modules need to be loaded in a context with unlocked mutex */ |
740 | mutex_unlock(&dev->mutex); | |
065c0956 | 741 | request_module("w1-family-0x%02X", rn->family); |
bc04d76d | 742 | mutex_lock(&dev->mutex); |
8d7bda51 | 743 | |
1da177e4 LT |
744 | spin_lock(&w1_flock); |
745 | f = w1_family_registered(rn->family); | |
746 | if (!f) { | |
99c5bfe9 | 747 | f= &w1_default_family; |
1da177e4 LT |
748 | dev_info(&dev->dev, "Family %x for %02x.%012llx.%02x is not registered.\n", |
749 | rn->family, rn->family, | |
750 | (unsigned long long)rn->id, rn->crc); | |
1da177e4 LT |
751 | } |
752 | __w1_family_get(f); | |
753 | spin_unlock(&w1_flock); | |
754 | ||
755 | sl->family = f; | |
756 | ||
1da177e4 LT |
757 | err = __w1_attach_slave_device(sl); |
758 | if (err < 0) { | |
759 | dev_err(&dev->dev, "%s: Attaching %s failed.\n", __func__, | |
760 | sl->name); | |
2c927c0c | 761 | dev->slave_count--; |
1da177e4 | 762 | w1_family_put(sl->family); |
d2ce4ea1 | 763 | atomic_dec(&sl->master->refcnt); |
1da177e4 LT |
764 | kfree(sl); |
765 | return err; | |
766 | } | |
767 | ||
768 | sl->ttl = dev->slave_ttl; | |
1da177e4 | 769 | |
12003375 | 770 | memcpy(msg.id.id, rn, sizeof(msg.id)); |
1da177e4 LT |
771 | msg.type = W1_SLAVE_ADD; |
772 | w1_netlink_send(dev, &msg); | |
773 | ||
774 | return 0; | |
775 | } | |
776 | ||
9fcbbac5 | 777 | int w1_unref_slave(struct w1_slave *sl) |
1da177e4 | 778 | { |
9fcbbac5 DF |
779 | struct w1_master *dev = sl->master; |
780 | int refcnt; | |
781 | mutex_lock(&dev->list_mutex); | |
782 | refcnt = atomic_sub_return(1, &sl->refcnt); | |
783 | if (refcnt == 0) { | |
784 | struct w1_netlink_msg msg; | |
785 | ||
786 | dev_dbg(&sl->dev, "%s: detaching %s [%p].\n", __func__, | |
787 | sl->name, sl); | |
788 | ||
789 | list_del(&sl->w1_slave_entry); | |
790 | ||
791 | memset(&msg, 0, sizeof(msg)); | |
792 | memcpy(msg.id.id, &sl->reg_num, sizeof(msg.id)); | |
793 | msg.type = W1_SLAVE_REMOVE; | |
794 | w1_netlink_send(sl->master, &msg); | |
795 | ||
18d7f891 | 796 | w1_family_notify(BUS_NOTIFY_DEL_DEVICE, sl); |
9fcbbac5 DF |
797 | device_unregister(&sl->dev); |
798 | #ifdef DEBUG | |
799 | memset(sl, 0, sizeof(*sl)); | |
800 | #endif | |
801 | kfree(sl); | |
802 | } | |
803 | atomic_dec(&dev->refcnt); | |
804 | mutex_unlock(&dev->list_mutex); | |
805 | return refcnt; | |
806 | } | |
1da177e4 | 807 | |
9fcbbac5 DF |
808 | int w1_slave_detach(struct w1_slave *sl) |
809 | { | |
810 | /* Only detach a slave once as it decreases the refcnt each time. */ | |
811 | int destroy_now; | |
812 | mutex_lock(&sl->master->list_mutex); | |
813 | destroy_now = !test_bit(W1_SLAVE_DETACH, &sl->flags); | |
814 | set_bit(W1_SLAVE_DETACH, &sl->flags); | |
815 | mutex_unlock(&sl->master->list_mutex); | |
816 | ||
817 | if (destroy_now) | |
818 | destroy_now = !w1_unref_slave(sl); | |
819 | return destroy_now ? 0 : -EBUSY; | |
1da177e4 LT |
820 | } |
821 | ||
12003375 EP |
822 | struct w1_master *w1_search_master_id(u32 id) |
823 | { | |
b332af53 | 824 | struct w1_master *dev = NULL, *iter; |
12003375 | 825 | |
abd52a13 | 826 | mutex_lock(&w1_mlock); |
b332af53 JK |
827 | list_for_each_entry(iter, &w1_masters, w1_master_entry) { |
828 | if (iter->id == id) { | |
829 | dev = iter; | |
830 | atomic_inc(&iter->refcnt); | |
12003375 EP |
831 | break; |
832 | } | |
833 | } | |
abd52a13 | 834 | mutex_unlock(&w1_mlock); |
12003375 | 835 | |
b332af53 | 836 | return dev; |
12003375 EP |
837 | } |
838 | ||
839 | struct w1_slave *w1_search_slave(struct w1_reg_num *id) | |
840 | { | |
841 | struct w1_master *dev; | |
b332af53 | 842 | struct w1_slave *sl = NULL, *iter; |
12003375 | 843 | |
abd52a13 | 844 | mutex_lock(&w1_mlock); |
12003375 | 845 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
9fcbbac5 | 846 | mutex_lock(&dev->list_mutex); |
b332af53 JK |
847 | list_for_each_entry(iter, &dev->slist, w1_slave_entry) { |
848 | if (iter->reg_num.family == id->family && | |
849 | iter->reg_num.id == id->id && | |
850 | iter->reg_num.crc == id->crc) { | |
851 | sl = iter; | |
12003375 | 852 | atomic_inc(&dev->refcnt); |
b332af53 | 853 | atomic_inc(&iter->refcnt); |
12003375 EP |
854 | break; |
855 | } | |
856 | } | |
9fcbbac5 | 857 | mutex_unlock(&dev->list_mutex); |
12003375 | 858 | |
b332af53 | 859 | if (sl) |
12003375 EP |
860 | break; |
861 | } | |
abd52a13 | 862 | mutex_unlock(&w1_mlock); |
12003375 | 863 | |
b332af53 | 864 | return sl; |
12003375 EP |
865 | } |
866 | ||
c30c9b15 | 867 | void w1_reconnect_slaves(struct w1_family *f, int attach) |
6adf87bd | 868 | { |
c30c9b15 | 869 | struct w1_slave *sl, *sln; |
6adf87bd EP |
870 | struct w1_master *dev; |
871 | ||
abd52a13 | 872 | mutex_lock(&w1_mlock); |
6adf87bd | 873 | list_for_each_entry(dev, &w1_masters, w1_master_entry) { |
c30c9b15 DF |
874 | dev_dbg(&dev->dev, "Reconnecting slaves in device %s " |
875 | "for family %02x.\n", dev->name, f->fid); | |
876 | mutex_lock(&dev->mutex); | |
9fcbbac5 | 877 | mutex_lock(&dev->list_mutex); |
c30c9b15 DF |
878 | list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) { |
879 | /* If it is a new family, slaves with the default | |
880 | * family driver and are that family will be | |
881 | * connected. If the family is going away, devices | |
882 | * matching that family are reconneced. | |
883 | */ | |
884 | if ((attach && sl->family->fid == W1_FAMILY_DEFAULT | |
885 | && sl->reg_num.family == f->fid) || | |
886 | (!attach && sl->family->fid == f->fid)) { | |
887 | struct w1_reg_num rn; | |
888 | ||
9fcbbac5 | 889 | mutex_unlock(&dev->list_mutex); |
c30c9b15 | 890 | memcpy(&rn, &sl->reg_num, sizeof(rn)); |
9fcbbac5 DF |
891 | /* If it was already in use let the automatic |
892 | * scan pick it up again later. | |
893 | */ | |
894 | if (!w1_slave_detach(sl)) | |
895 | w1_attach_slave_device(dev, &rn); | |
896 | mutex_lock(&dev->list_mutex); | |
c30c9b15 DF |
897 | } |
898 | } | |
899 | dev_dbg(&dev->dev, "Reconnecting slaves in device %s " | |
900 | "has been finished.\n", dev->name); | |
9fcbbac5 | 901 | mutex_unlock(&dev->list_mutex); |
c30c9b15 | 902 | mutex_unlock(&dev->mutex); |
6adf87bd | 903 | } |
abd52a13 | 904 | mutex_unlock(&w1_mlock); |
6adf87bd EP |
905 | } |
906 | ||
48b7de66 CV |
907 | static int w1_addr_crc_is_valid(struct w1_master *dev, u64 rn) |
908 | { | |
909 | u64 rn_le = cpu_to_le64(rn); | |
910 | struct w1_reg_num *tmp = (struct w1_reg_num *)&rn; | |
911 | u8 crc; | |
912 | ||
913 | crc = w1_calc_crc8((u8 *)&rn_le, 7); | |
914 | ||
915 | /* quirk: | |
916 | * DS28E04 (1w eeprom) has strapping pins to change | |
917 | * address, but will not update the crc. So normal rules | |
918 | * for consistent w1 addresses are violated. We test | |
919 | * with the 7 LSBs of the address forced high. | |
920 | * | |
921 | * (char*)&rn_le = { family, addr_lsb, ..., addr_msb, crc }. | |
922 | */ | |
923 | if (crc != tmp->crc && tmp->family == W1_FAMILY_DS28E04) { | |
924 | u64 corr_le = rn_le; | |
925 | ||
926 | ((u8 *)&corr_le)[1] |= 0x7f; | |
927 | crc = w1_calc_crc8((u8 *)&corr_le, 7); | |
928 | ||
929 | dev_info(&dev->dev, "DS28E04 crc workaround on %02x.%012llx.%02x\n", | |
930 | tmp->family, (unsigned long long)tmp->id, tmp->crc); | |
931 | } | |
932 | ||
933 | if (crc != tmp->crc) { | |
934 | dev_dbg(&dev->dev, "w1 addr crc mismatch: %02x.%012llx.%02x != 0x%02x.\n", | |
935 | tmp->family, (unsigned long long)tmp->id, tmp->crc, crc); | |
936 | return 0; | |
937 | } | |
938 | return 1; | |
939 | } | |
940 | ||
963bb101 | 941 | void w1_slave_found(struct w1_master *dev, u64 rn) |
1da177e4 | 942 | { |
1da177e4 | 943 | struct w1_slave *sl; |
1da177e4 | 944 | struct w1_reg_num *tmp; |
1da177e4 | 945 | |
c30c9b15 | 946 | atomic_inc(&dev->refcnt); |
7785925d | 947 | |
1da177e4 LT |
948 | tmp = (struct w1_reg_num *) &rn; |
949 | ||
cd7b28d3 DF |
950 | sl = w1_slave_search_device(dev, tmp); |
951 | if (sl) { | |
bb670937 | 952 | set_bit(W1_SLAVE_ACTIVE, &sl->flags); |
cd7b28d3 | 953 | } else { |
48b7de66 | 954 | if (rn && w1_addr_crc_is_valid(dev, rn)) |
cd7b28d3 | 955 | w1_attach_slave_device(dev, tmp); |
1da177e4 | 956 | } |
7785925d | 957 | |
1da177e4 LT |
958 | atomic_dec(&dev->refcnt); |
959 | } | |
960 | ||
6b729861 | 961 | /** |
b3be177a DF |
962 | * w1_search() - Performs a ROM Search & registers any devices found. |
963 | * @dev: The master device to search | |
964 | * @search_type: W1_SEARCH to search all devices, or W1_ALARM_SEARCH | |
965 | * to return only devices in the alarmed state | |
966 | * @cb: Function to call when a device is found | |
967 | * | |
6b729861 EP |
968 | * The 1-wire search is a simple binary tree search. |
969 | * For each bit of the address, we read two bits and write one bit. | |
970 | * The bit written will put to sleep all devies that don't match that bit. | |
971 | * When the two reads differ, the direction choice is obvious. | |
972 | * When both bits are 0, we must choose a path to take. | |
973 | * When we can scan all 64 bits without having to choose a path, we are done. | |
974 | * | |
975 | * See "Application note 187 1-wire search algorithm" at www.maxim-ic.com | |
976 | * | |
6b729861 | 977 | */ |
12003375 | 978 | void w1_search(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb) |
1da177e4 | 979 | { |
6b729861 EP |
980 | u64 last_rn, rn, tmp64; |
981 | int i, slave_count = 0; | |
982 | int last_zero, last_device; | |
983 | int search_bit, desc_bit; | |
984 | u8 triplet_ret = 0; | |
1da177e4 | 985 | |
6b729861 | 986 | search_bit = 0; |
3c6955e5 DF |
987 | rn = dev->search_id; |
988 | last_rn = 0; | |
6b729861 EP |
989 | last_device = 0; |
990 | last_zero = -1; | |
1da177e4 LT |
991 | |
992 | desc_bit = 64; | |
993 | ||
6b729861 EP |
994 | while ( !last_device && (slave_count++ < dev->max_slave_count) ) { |
995 | last_rn = rn; | |
1da177e4 LT |
996 | rn = 0; |
997 | ||
1da177e4 LT |
998 | /* |
999 | * Reset bus and all 1-wire device state machines | |
1000 | * so they can respond to our requests. | |
1001 | * | |
1002 | * Return 0 - device(s) present, 1 - no devices present. | |
1003 | */ | |
b02f8bed | 1004 | mutex_lock(&dev->bus_mutex); |
1da177e4 | 1005 | if (w1_reset_bus(dev)) { |
b02f8bed | 1006 | mutex_unlock(&dev->bus_mutex); |
2da5bf80 | 1007 | dev_dbg(&dev->dev, "No devices present on the wire.\n"); |
1da177e4 LT |
1008 | break; |
1009 | } | |
1010 | ||
c9cbf558 EP |
1011 | /* Do fast search on single slave bus */ |
1012 | if (dev->max_slave_count == 1) { | |
b02f8bed | 1013 | int rv; |
c9cbf558 | 1014 | w1_write_8(dev, W1_READ_ROM); |
b02f8bed N |
1015 | rv = w1_read_block(dev, (u8 *)&rn, 8); |
1016 | mutex_unlock(&dev->bus_mutex); | |
c9cbf558 | 1017 | |
b02f8bed | 1018 | if (rv == 8 && rn) |
c9cbf558 EP |
1019 | cb(dev, rn); |
1020 | ||
1021 | break; | |
1022 | } | |
1023 | ||
6b729861 | 1024 | /* Start the search */ |
12003375 | 1025 | w1_write_8(dev, search_type); |
1da177e4 | 1026 | for (i = 0; i < 64; ++i) { |
6b729861 EP |
1027 | /* Determine the direction/search bit */ |
1028 | if (i == desc_bit) | |
1029 | search_bit = 1; /* took the 0 path last time, so take the 1 path */ | |
1030 | else if (i > desc_bit) | |
1031 | search_bit = 0; /* take the 0 path on the next branch */ | |
1da177e4 | 1032 | else |
6b729861 | 1033 | search_bit = ((last_rn >> i) & 0x1); |
1da177e4 | 1034 | |
b3be177a | 1035 | /* Read two bits and write one bit */ |
6b729861 EP |
1036 | triplet_ret = w1_triplet(dev, search_bit); |
1037 | ||
1038 | /* quit if no device responded */ | |
1039 | if ( (triplet_ret & 0x03) == 0x03 ) | |
1040 | break; | |
1da177e4 | 1041 | |
6b729861 EP |
1042 | /* If both directions were valid, and we took the 0 path... */ |
1043 | if (triplet_ret == 0) | |
1044 | last_zero = i; | |
1da177e4 | 1045 | |
6b729861 EP |
1046 | /* extract the direction taken & update the device number */ |
1047 | tmp64 = (triplet_ret >> 2); | |
1048 | rn |= (tmp64 << i); | |
0d671b27 | 1049 | |
42105698 | 1050 | if (test_bit(W1_ABORT_SEARCH, &dev->flags)) { |
b02f8bed | 1051 | mutex_unlock(&dev->bus_mutex); |
7dc8f527 | 1052 | dev_dbg(&dev->dev, "Abort w1_search\n"); |
0d671b27 DF |
1053 | return; |
1054 | } | |
6b729861 | 1055 | } |
b02f8bed | 1056 | mutex_unlock(&dev->bus_mutex); |
7785925d | 1057 | |
6b729861 | 1058 | if ( (triplet_ret & 0x03) != 0x03 ) { |
3c6955e5 | 1059 | if ((desc_bit == last_zero) || (last_zero < 0)) { |
6b729861 | 1060 | last_device = 1; |
3c6955e5 DF |
1061 | dev->search_id = 0; |
1062 | } else { | |
1063 | dev->search_id = rn; | |
1064 | } | |
6b729861 | 1065 | desc_bit = last_zero; |
c30c9b15 | 1066 | cb(dev, rn); |
6b729861 | 1067 | } |
a1613056 DF |
1068 | |
1069 | if (!last_device && slave_count == dev->max_slave_count && | |
1070 | !test_bit(W1_WARN_MAX_COUNT, &dev->flags)) { | |
3c6955e5 DF |
1071 | /* Only max_slave_count will be scanned in a search, |
1072 | * but it will start where it left off next search | |
1073 | * until all ids are identified and then it will start | |
1074 | * over. A continued search will report the previous | |
1075 | * last id as the first id (provided it is still on the | |
1076 | * bus). | |
1077 | */ | |
a1613056 | 1078 | dev_info(&dev->dev, "%s: max_slave_count %d reached, " |
3c6955e5 | 1079 | "will continue next search.\n", __func__, |
a1613056 DF |
1080 | dev->max_slave_count); |
1081 | set_bit(W1_WARN_MAX_COUNT, &dev->flags); | |
1082 | } | |
1da177e4 LT |
1083 | } |
1084 | } | |
1085 | ||
963bb101 DF |
1086 | void w1_search_process_cb(struct w1_master *dev, u8 search_type, |
1087 | w1_slave_found_callback cb) | |
12003375 EP |
1088 | { |
1089 | struct w1_slave *sl, *sln; | |
1090 | ||
9fcbbac5 | 1091 | mutex_lock(&dev->list_mutex); |
12003375 | 1092 | list_for_each_entry(sl, &dev->slist, w1_slave_entry) |
bb670937 | 1093 | clear_bit(W1_SLAVE_ACTIVE, &sl->flags); |
9fcbbac5 | 1094 | mutex_unlock(&dev->list_mutex); |
12003375 | 1095 | |
963bb101 | 1096 | w1_search_devices(dev, search_type, cb); |
12003375 | 1097 | |
9fcbbac5 | 1098 | mutex_lock(&dev->list_mutex); |
12003375 | 1099 | list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) { |
9fcbbac5 DF |
1100 | if (!test_bit(W1_SLAVE_ACTIVE, &sl->flags) && !--sl->ttl) { |
1101 | mutex_unlock(&dev->list_mutex); | |
12003375 | 1102 | w1_slave_detach(sl); |
9fcbbac5 DF |
1103 | mutex_lock(&dev->list_mutex); |
1104 | } | |
bb670937 | 1105 | else if (test_bit(W1_SLAVE_ACTIVE, &sl->flags)) |
12003375 EP |
1106 | sl->ttl = dev->slave_ttl; |
1107 | } | |
9fcbbac5 | 1108 | mutex_unlock(&dev->list_mutex); |
12003375 EP |
1109 | |
1110 | if (dev->search_count > 0) | |
1111 | dev->search_count--; | |
1112 | } | |
1113 | ||
963bb101 DF |
1114 | static void w1_search_process(struct w1_master *dev, u8 search_type) |
1115 | { | |
1116 | w1_search_process_cb(dev, search_type, w1_slave_found); | |
1117 | } | |
1118 | ||
b3be177a DF |
1119 | /** |
1120 | * w1_process_callbacks() - execute each dev->async_list callback entry | |
1121 | * @dev: w1_master device | |
1122 | * | |
a0f10464 AK |
1123 | * The w1 master list_mutex must be held. |
1124 | * | |
b3be177a DF |
1125 | * Return: 1 if there were commands to executed 0 otherwise |
1126 | */ | |
9fcbbac5 DF |
1127 | int w1_process_callbacks(struct w1_master *dev) |
1128 | { | |
1129 | int ret = 0; | |
1130 | struct w1_async_cmd *async_cmd, *async_n; | |
1131 | ||
1132 | /* The list can be added to in another thread, loop until it is empty */ | |
1133 | while (!list_empty(&dev->async_list)) { | |
1134 | list_for_each_entry_safe(async_cmd, async_n, &dev->async_list, | |
1135 | async_entry) { | |
1136 | /* drop the lock, if it is a search it can take a long | |
1137 | * time */ | |
1138 | mutex_unlock(&dev->list_mutex); | |
1139 | async_cmd->cb(dev, async_cmd); | |
1140 | ret = 1; | |
1141 | mutex_lock(&dev->list_mutex); | |
1142 | } | |
1143 | } | |
1144 | return ret; | |
1145 | } | |
1146 | ||
1da177e4 LT |
1147 | int w1_process(void *data) |
1148 | { | |
1149 | struct w1_master *dev = (struct w1_master *) data; | |
3c52e4e6 DF |
1150 | /* As long as w1_timeout is only set by a module parameter the sleep |
1151 | * time can be calculated in jiffies once. | |
1152 | */ | |
c3098356 DK |
1153 | const unsigned long jtime = |
1154 | usecs_to_jiffies(w1_timeout * 1000000 + w1_timeout_us); | |
9fcbbac5 DF |
1155 | /* remainder if it woke up early */ |
1156 | unsigned long jremain = 0; | |
1da177e4 | 1157 | |
25d56488 YY |
1158 | atomic_inc(&dev->refcnt); |
1159 | ||
9fcbbac5 DF |
1160 | for (;;) { |
1161 | ||
1162 | if (!jremain && dev->search_count) { | |
01e14d6d DF |
1163 | mutex_lock(&dev->mutex); |
1164 | w1_search_process(dev, W1_SEARCH); | |
1165 | mutex_unlock(&dev->mutex); | |
1166 | } | |
1167 | ||
9fcbbac5 DF |
1168 | mutex_lock(&dev->list_mutex); |
1169 | /* Note, w1_process_callback drops the lock while processing, | |
1170 | * but locks it again before returning. | |
1171 | */ | |
1172 | if (!w1_process_callbacks(dev) && jremain) { | |
1173 | /* a wake up is either to stop the thread, process | |
1174 | * callbacks, or search, it isn't process callbacks, so | |
1175 | * schedule a search. | |
1176 | */ | |
1177 | jremain = 1; | |
1178 | } | |
1179 | ||
3c52e4e6 DF |
1180 | __set_current_state(TASK_INTERRUPTIBLE); |
1181 | ||
9fcbbac5 DF |
1182 | /* hold list_mutex until after interruptible to prevent loosing |
1183 | * the wakeup signal when async_cmd is added. | |
1184 | */ | |
1185 | mutex_unlock(&dev->list_mutex); | |
1186 | ||
36225a7c YY |
1187 | if (kthread_should_stop()) { |
1188 | __set_current_state(TASK_RUNNING); | |
3c52e4e6 | 1189 | break; |
36225a7c | 1190 | } |
3c52e4e6 DF |
1191 | |
1192 | /* Only sleep when the search is active. */ | |
9fcbbac5 DF |
1193 | if (dev->search_count) { |
1194 | if (!jremain) | |
1195 | jremain = jtime; | |
1196 | jremain = schedule_timeout(jremain); | |
1197 | } | |
3c52e4e6 DF |
1198 | else |
1199 | schedule(); | |
1da177e4 LT |
1200 | } |
1201 | ||
1202 | atomic_dec(&dev->refcnt); | |
1da177e4 LT |
1203 | |
1204 | return 0; | |
1205 | } | |
1206 | ||
73a98fce | 1207 | static int __init w1_init(void) |
1da177e4 LT |
1208 | { |
1209 | int retval; | |
1210 | ||
fdc9167a | 1211 | pr_info("Driver for 1-wire Dallas network protocol.\n"); |
1da177e4 | 1212 | |
12003375 EP |
1213 | w1_init_netlink(); |
1214 | ||
1da177e4 LT |
1215 | retval = bus_register(&w1_bus_type); |
1216 | if (retval) { | |
fdc9167a | 1217 | pr_err("Failed to register bus. err=%d.\n", retval); |
1da177e4 LT |
1218 | goto err_out_exit_init; |
1219 | } | |
1220 | ||
7f772ed8 | 1221 | retval = driver_register(&w1_master_driver); |
1da177e4 | 1222 | if (retval) { |
fdc9167a | 1223 | pr_err("Failed to register master driver. err=%d.\n", |
1da177e4 LT |
1224 | retval); |
1225 | goto err_out_bus_unregister; | |
1226 | } | |
1227 | ||
7f772ed8 EP |
1228 | retval = driver_register(&w1_slave_driver); |
1229 | if (retval) { | |
fdc9167a | 1230 | pr_err("Failed to register slave driver. err=%d.\n", |
7f772ed8 EP |
1231 | retval); |
1232 | goto err_out_master_unregister; | |
1233 | } | |
1234 | ||
1da177e4 LT |
1235 | return 0; |
1236 | ||
c30c9b15 DF |
1237 | #if 0 |
1238 | /* For undoing the slave register if there was a step after it. */ | |
7f772ed8 EP |
1239 | err_out_slave_unregister: |
1240 | driver_unregister(&w1_slave_driver); | |
c30c9b15 | 1241 | #endif |
7f772ed8 EP |
1242 | |
1243 | err_out_master_unregister: | |
1244 | driver_unregister(&w1_master_driver); | |
1da177e4 LT |
1245 | |
1246 | err_out_bus_unregister: | |
1247 | bus_unregister(&w1_bus_type); | |
1248 | ||
1249 | err_out_exit_init: | |
1250 | return retval; | |
1251 | } | |
1252 | ||
73a98fce | 1253 | static void __exit w1_fini(void) |
1da177e4 | 1254 | { |
83f3fcf9 | 1255 | struct w1_master *dev, *n; |
1da177e4 | 1256 | |
c30c9b15 | 1257 | /* Set netlink removal messages and some cleanup */ |
83f3fcf9 | 1258 | list_for_each_entry_safe(dev, n, &w1_masters, w1_master_entry) |
1da177e4 | 1259 | __w1_remove_master_device(dev); |
1da177e4 | 1260 | |
12003375 EP |
1261 | w1_fini_netlink(); |
1262 | ||
7f772ed8 EP |
1263 | driver_unregister(&w1_slave_driver); |
1264 | driver_unregister(&w1_master_driver); | |
1da177e4 LT |
1265 | bus_unregister(&w1_bus_type); |
1266 | } | |
1267 | ||
1268 | module_init(w1_init); | |
1269 | module_exit(w1_fini); | |
50fa2951 AD |
1270 | |
1271 | MODULE_AUTHOR("Evgeniy Polyakov <[email protected]>"); | |
1272 | MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol."); | |
1273 | MODULE_LICENSE("GPL"); |