blob: b3e1792d9c49fce5da50cdaf67e6278f4a95454e [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Evgeniy Polyakova8018762011-08-25 15:59:06 -07003 * Copyright (c) 2004 Evgeniy Polyakov <zbr@ioremap.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#include <linux/kernel.h>
7#include <linux/list.h>
8#include <linux/delay.h>
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +03009#include <linux/kthread.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010011#include <linux/sched/signal.h>
Paul Gortmaker96239322011-07-10 13:21:52 -040012#include <linux/export.h>
Paul Gortmaker4d1841292011-09-15 23:09:52 -040013#include <linux/moduleparam.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Andrew F. Davisde0d6db2017-06-05 08:52:08 -050015#include "w1_internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "w1_netlink.h"
17
David Fries9141f572008-10-15 22:04:45 -070018static int w1_search_count = -1; /* Default is continual scan */
19module_param_named(search_count, w1_search_count, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
David Fries6a158c02008-10-15 22:04:42 -070021static int w1_enable_pullup = 1;
22module_param_named(enable_pullup, w1_enable_pullup, int, 0);
23
Thomas Wood7242d422014-05-30 16:10:20 -070024static struct w1_master *w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
Evgeniy Polyakov77859252005-05-20 22:33:25 +040025 struct device_driver *driver,
26 struct device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
28 struct w1_master *dev;
29 int err;
30
31 /*
32 * We are in process context(kernel thread), so can sleep.
33 */
Yoann Padioleaudd00cc42007-07-19 01:49:03 -070034 dev = kzalloc(sizeof(struct w1_master) + sizeof(struct w1_bus_master), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 if (!dev) {
Fjodor Schelichowfdc91672014-06-19 02:52:00 +020036 pr_err("Failed to allocate %zd bytes for new w1 device.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 sizeof(struct w1_master));
38 return NULL;
39 }
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42 dev->bus_master = (struct w1_bus_master *)(dev + 1);
43
Evgeniy Polyakov77859252005-05-20 22:33:25 +040044 dev->owner = THIS_MODULE;
45 dev->max_slave_count = slave_count;
46 dev->slave_count = 0;
47 dev->attempts = 0;
Evgeniy Polyakov77859252005-05-20 22:33:25 +040048 dev->initialized = 0;
49 dev->id = id;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 dev->slave_ttl = slave_ttl;
David Fries9141f572008-10-15 22:04:45 -070051 dev->search_count = w1_search_count;
David Fries6a158c02008-10-15 22:04:42 -070052 dev->enable_pullup = w1_enable_pullup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
David Fries01e14d62008-10-15 22:04:40 -070054 /* 1 for w1_process to decrement
55 * 1 for __w1_remove_master_device to decrement
56 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 atomic_set(&dev->refcnt, 2);
58
59 INIT_LIST_HEAD(&dev->slist);
David Fries9fcbbac2014-01-15 22:29:18 -060060 INIT_LIST_HEAD(&dev->async_list);
Evgeniy Polyakovabd52a12006-04-03 12:04:27 +040061 mutex_init(&dev->mutex);
NeilBrownb02f8be2012-05-18 15:59:52 +100062 mutex_init(&dev->bus_mutex);
David Fries9fcbbac2014-01-15 22:29:18 -060063 mutex_init(&dev->list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 memcpy(&dev->dev, device, sizeof(struct device));
Kay Sievers40f91de62009-01-06 10:44:34 -080066 dev_set_name(&dev->dev, "w1_bus_master%u", dev->id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 snprintf(dev->name, sizeof(dev->name), "w1_bus_master%u", dev->id);
Florian Faber68a436a2011-11-02 13:39:59 -070068 dev->dev.init_name = dev->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70 dev->driver = driver;
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 dev->seq = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 err = device_register(&dev->dev);
75 if (err) {
Fjodor Schelichowfdc91672014-06-19 02:52:00 +020076 pr_err("Failed to register master device. err=%d\n", err);
Levente Kurusa50524362015-09-14 10:56:12 -070077 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 dev = NULL;
79 }
80
81 return dev;
82}
83
Evgeniy Polyakov2c5bfda2006-04-04 20:35:22 +040084static void w1_free_dev(struct w1_master *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 device_unregister(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087}
88
David Friesb3be1772014-01-15 22:29:25 -060089/**
90 * w1_add_master_device() - registers a new master device
91 * @master: master bus device to register
92 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070093int w1_add_master_device(struct w1_bus_master *master)
94{
David Friesaf00a2d2008-10-15 22:04:53 -070095 struct w1_master *dev, *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 int retval = 0;
97 struct w1_netlink_msg msg;
David Friesaf00a2d2008-10-15 22:04:53 -070098 int id, found;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Thomas Wood7242d422014-05-30 16:10:20 -0700100 /* validate minimum functionality */
101 if (!(master->touch_bit && master->reset_bus) &&
102 !(master->write_bit && master->read_bit) &&
Evgeniy Polyakovc1f858b2007-05-08 00:31:20 -0700103 !(master->write_byte && master->read_byte && master->reset_bus)) {
Fjodor Schelichowfdc91672014-06-19 02:52:00 +0200104 pr_err("w1_add_master_device: invalid function set\n");
Evgeniy Polyakov6adf87b2005-06-04 01:29:25 +0400105 return(-EINVAL);
Thomas Wood7242d422014-05-30 16:10:20 -0700106 }
Evgeniy Polyakovbe57ce22005-06-04 01:21:46 +0400107
David Friesaf00a2d2008-10-15 22:04:53 -0700108 /* Lock until the device is added (or not) to w1_masters. */
109 mutex_lock(&w1_mlock);
110 /* Search for the first available id (starting at 1). */
111 id = 0;
112 do {
113 ++id;
114 found = 0;
115 list_for_each_entry(entry, &w1_masters, w1_master_entry) {
116 if (entry->id == id) {
117 found = 1;
118 break;
119 }
120 }
121 } while (found);
122
123 dev = w1_alloc_dev(id, w1_max_slave_count, w1_max_slave_ttl,
124 &w1_master_driver, &w1_master_device);
125 if (!dev) {
126 mutex_unlock(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 return -ENOMEM;
David Friesaf00a2d2008-10-15 22:04:53 -0700128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
David Fries01e14d62008-10-15 22:04:40 -0700130 retval = w1_create_master_attributes(dev);
David Friesaf00a2d2008-10-15 22:04:53 -0700131 if (retval) {
132 mutex_unlock(&w1_mlock);
David Fries01e14d62008-10-15 22:04:40 -0700133 goto err_out_free_dev;
David Friesaf00a2d2008-10-15 22:04:53 -0700134 }
David Fries01e14d62008-10-15 22:04:40 -0700135
136 memcpy(dev->bus_master, master, sizeof(struct w1_bus_master));
137
138 dev->initialized = 1;
139
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +0300140 dev->thread = kthread_run(&w1_process, dev, "%s", dev->name);
141 if (IS_ERR(dev->thread)) {
142 retval = PTR_ERR(dev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 dev_err(&dev->dev,
144 "Failed to create new kernel thread. err=%d\n",
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +0300145 retval);
David Friesaf00a2d2008-10-15 22:04:53 -0700146 mutex_unlock(&w1_mlock);
David Fries01e14d62008-10-15 22:04:40 -0700147 goto err_out_rm_attr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 list_add(&dev->w1_master_entry, &w1_masters);
Evgeniy Polyakovabd52a12006-04-03 12:04:27 +0400151 mutex_unlock(&w1_mlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300153 memset(&msg, 0, sizeof(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 msg.id.mst.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 msg.type = W1_MASTER_ADD;
156 w1_netlink_send(dev, &msg);
157
158 return 0;
159
David Fries01e14d62008-10-15 22:04:40 -0700160#if 0 /* Thread cleanup code, not required currently. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161err_out_kill_thread:
David Fries42105692014-01-15 22:29:13 -0600162 set_bit(W1_ABORT_SEARCH, &dev->flags);
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +0300163 kthread_stop(dev->thread);
David Fries01e14d62008-10-15 22:04:40 -0700164#endif
165err_out_rm_attr:
166 w1_destroy_master_attributes(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167err_out_free_dev:
168 w1_free_dev(dev);
169
170 return retval;
171}
Andrew F. Davis50fa2952017-05-16 15:02:12 -0500172EXPORT_SYMBOL(w1_add_master_device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174void __w1_remove_master_device(struct w1_master *dev)
175{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 struct w1_netlink_msg msg;
David Friesc30c9b12008-10-15 22:04:38 -0700177 struct w1_slave *sl, *sln;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
David Friesc30c9b12008-10-15 22:04:38 -0700179 mutex_lock(&w1_mlock);
180 list_del(&dev->w1_master_entry);
181 mutex_unlock(&w1_mlock);
182
David Fries9fcbbac2014-01-15 22:29:18 -0600183 set_bit(W1_ABORT_SEARCH, &dev->flags);
184 kthread_stop(dev->thread);
185
David Friesc30c9b12008-10-15 22:04:38 -0700186 mutex_lock(&dev->mutex);
David Fries9fcbbac2014-01-15 22:29:18 -0600187 mutex_lock(&dev->list_mutex);
188 list_for_each_entry_safe(sl, sln, &dev->slist, w1_slave_entry) {
189 mutex_unlock(&dev->list_mutex);
David Friesc30c9b12008-10-15 22:04:38 -0700190 w1_slave_detach(sl);
David Fries9fcbbac2014-01-15 22:29:18 -0600191 mutex_lock(&dev->list_mutex);
192 }
David Friesc30c9b12008-10-15 22:04:38 -0700193 w1_destroy_master_attributes(dev);
David Fries9fcbbac2014-01-15 22:29:18 -0600194 mutex_unlock(&dev->list_mutex);
David Friesc30c9b12008-10-15 22:04:38 -0700195 mutex_unlock(&dev->mutex);
196 atomic_dec(&dev->refcnt);
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 while (atomic_read(&dev->refcnt)) {
Evgeniy Polyakov674a396c2006-02-20 11:15:37 +0300199 dev_info(&dev->dev, "Waiting for %s to become free: refcnt=%d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 dev->name, atomic_read(&dev->refcnt));
201
202 if (msleep_interruptible(1000))
203 flush_signals(current);
Alexey Khoroshilova0f10462014-05-07 01:26:04 +0400204 mutex_lock(&dev->list_mutex);
David Fries9fcbbac2014-01-15 22:29:18 -0600205 w1_process_callbacks(dev);
Alexey Khoroshilova0f10462014-05-07 01:26:04 +0400206 mutex_unlock(&dev->list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 }
Alexey Khoroshilova0f10462014-05-07 01:26:04 +0400208 mutex_lock(&dev->list_mutex);
David Fries9fcbbac2014-01-15 22:29:18 -0600209 w1_process_callbacks(dev);
Alexey Khoroshilova0f10462014-05-07 01:26:04 +0400210 mutex_unlock(&dev->list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Evgeniy Polyakov12003372006-03-23 19:11:58 +0300212 memset(&msg, 0, sizeof(msg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 msg.id.mst.id = dev->id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 msg.type = W1_MASTER_REMOVE;
215 w1_netlink_send(dev, &msg);
216
217 w1_free_dev(dev);
218}
219
David Friesb3be1772014-01-15 22:29:25 -0600220/**
221 * w1_remove_master_device() - unregister a master device
222 * @bm: master bus device to remove
223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224void w1_remove_master_device(struct w1_bus_master *bm)
225{
Evgeniy Polyakov59d94452007-08-22 14:01:51 -0700226 struct w1_master *dev, *found = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Evgeniy Polyakov77859252005-05-20 22:33:25 +0400228 list_for_each_entry(dev, &w1_masters, w1_master_entry) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (!dev->initialized)
230 continue;
231
Evgeniy Polyakov59d94452007-08-22 14:01:51 -0700232 if (dev->bus_master->data == bm->data) {
233 found = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
Evgeniy Polyakov59d94452007-08-22 14:01:51 -0700235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 }
237
Evgeniy Polyakov59d94452007-08-22 14:01:51 -0700238 if (!found) {
Fjodor Schelichowfdc91672014-06-19 02:52:00 +0200239 pr_err("Device doesn't exist.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 return;
241 }
242
Evgeniy Polyakov59d94452007-08-22 14:01:51 -0700243 __w1_remove_master_device(found);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245EXPORT_SYMBOL(w1_remove_master_device);