blob: b0248e934230d166c4e61a66a0ad18c268fa0a71 [file] [log] [blame]
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +04001/*
2 * Copyright (C) 2007, 2008, 2009 Siemens AG
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2
6 * as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040013 */
14
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040016#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/device.h>
19
Alexander Aring5ad60d32014-10-25 09:41:02 +020020#include <net/cfg802154.h>
Alexander Aringf3ada642014-11-09 08:36:48 +010021#include <net/rtnetlink.h>
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040022
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +040023#include "ieee802154.h"
Alexander Aring79fe1a22014-11-09 08:36:53 +010024#include "nl802154.h"
Alexander Aringe23e9ec2014-10-28 18:21:32 +010025#include "sysfs.h"
Alexander Aringa5dd1d72014-11-02 04:18:35 +010026#include "core.h"
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040027
Alexander Aringc4dd7472015-03-02 15:10:04 +010028/* name for sysfs, %d is appended */
29#define PHY_NAME "phy"
30
Alexander Aringf3ada642014-11-09 08:36:48 +010031/* RCU-protected (and RTNL for writers) */
Alexander Aring79fe1a22014-11-09 08:36:53 +010032LIST_HEAD(cfg802154_rdev_list);
Alexander Aringca20ce202014-11-09 08:36:54 +010033int cfg802154_rdev_list_generation;
Alexander Aringf3ada642014-11-09 08:36:48 +010034
Michał Mirosław9f3b7952013-02-01 20:40:17 +010035static int wpan_phy_match(struct device *dev, const void *data)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040036{
37 return !strcmp(dev_name(dev), (const char *)data);
38}
39
40struct wpan_phy *wpan_phy_find(const char *str)
41{
42 struct device *dev;
43
44 if (WARN_ON(!str))
45 return NULL;
46
Michał Mirosław9f3b7952013-02-01 20:40:17 +010047 dev = class_find_device(&wpan_phy_class, NULL, str, wpan_phy_match);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040048 if (!dev)
49 return NULL;
50
51 return container_of(dev, struct wpan_phy, dev);
52}
53EXPORT_SYMBOL(wpan_phy_find);
54
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040055struct wpan_phy_iter_data {
56 int (*fn)(struct wpan_phy *phy, void *data);
57 void *data;
58};
59
60static int wpan_phy_iter(struct device *dev, void *_data)
61{
62 struct wpan_phy_iter_data *wpid = _data;
63 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
Varka Bhadram4710d802014-07-02 09:01:09 +053064
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040065 return wpid->fn(phy, wpid->data);
66}
67
68int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
Varka Bhadram4710d802014-07-02 09:01:09 +053069 void *data)
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040070{
71 struct wpan_phy_iter_data wpid = {
72 .fn = fn,
73 .data = data,
74 };
75
76 return class_for_each_device(&wpan_phy_class, NULL,
77 &wpid, wpan_phy_iter);
78}
79EXPORT_SYMBOL(wpan_phy_for_each);
80
Alexander Aring79fe1a22014-11-09 08:36:53 +010081struct cfg802154_registered_device *
82cfg802154_rdev_by_wpan_phy_idx(int wpan_phy_idx)
83{
84 struct cfg802154_registered_device *result = NULL, *rdev;
85
86 ASSERT_RTNL();
87
88 list_for_each_entry(rdev, &cfg802154_rdev_list, list) {
89 if (rdev->wpan_phy_idx == wpan_phy_idx) {
90 result = rdev;
91 break;
92 }
93 }
94
95 return result;
96}
97
Alexander Aringa5dd1d72014-11-02 04:18:35 +010098struct wpan_phy *
Alexander Aringf6013792014-11-09 08:36:47 +010099wpan_phy_new(const struct cfg802154_ops *ops, size_t priv_size)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400100{
Alexander Aring53f9ee612014-11-05 20:51:12 +0100101 static atomic_t wpan_phy_counter = ATOMIC_INIT(0);
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100102 struct cfg802154_registered_device *rdev;
103 size_t alloc_size;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400104
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100105 alloc_size = sizeof(*rdev) + priv_size;
106 rdev = kzalloc(alloc_size, GFP_KERNEL);
107 if (!rdev)
108 return NULL;
109
110 rdev->ops = ops;
111
Alexander Aring53f9ee612014-11-05 20:51:12 +0100112 rdev->wpan_phy_idx = atomic_inc_return(&wpan_phy_counter);
113
114 if (unlikely(rdev->wpan_phy_idx < 0)) {
115 /* ugh, wrapped! */
116 atomic_dec(&wpan_phy_counter);
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100117 kfree(rdev);
Alexander Aring53f9ee612014-11-05 20:51:12 +0100118 return NULL;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400119 }
Alexander Aring53f9ee612014-11-05 20:51:12 +0100120
121 /* atomic_inc_return makes it start at 1, make it start at 0 */
122 rdev->wpan_phy_idx--;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400123
Alexander Aringfcf39e62014-11-09 08:36:50 +0100124 INIT_LIST_HEAD(&rdev->wpan_dev_list);
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100125 device_initialize(&rdev->wpan_phy.dev);
Alexander Aringc4dd7472015-03-02 15:10:04 +0100126 dev_set_name(&rdev->wpan_phy.dev, PHY_NAME "%d", rdev->wpan_phy_idx);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400127
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100128 rdev->wpan_phy.dev.class = &wpan_phy_class;
129 rdev->wpan_phy.dev.platform_data = rdev;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400130
Alexander Aringfcf39e62014-11-09 08:36:50 +0100131 init_waitqueue_head(&rdev->dev_wait);
132
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100133 return &rdev->wpan_phy;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400134}
Alexander Aringf6013792014-11-09 08:36:47 +0100135EXPORT_SYMBOL(wpan_phy_new);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400136
Dmitry Eremin-Solenikove9cf3562009-09-28 19:01:20 +0400137int wpan_phy_register(struct wpan_phy *phy)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400138{
Alexander Aringf3ada642014-11-09 08:36:48 +0100139 struct cfg802154_registered_device *rdev = wpan_phy_to_rdev(phy);
140 int ret;
141
142 rtnl_lock();
143 ret = device_add(&phy->dev);
144 if (ret) {
145 rtnl_unlock();
146 return ret;
147 }
148
149 list_add_rcu(&rdev->list, &cfg802154_rdev_list);
150 cfg802154_rdev_list_generation++;
151
152 /* TODO phy registered lock */
153 rtnl_unlock();
154
155 /* TODO nl802154 phy notify */
156
157 return 0;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400158}
159EXPORT_SYMBOL(wpan_phy_register);
160
161void wpan_phy_unregister(struct wpan_phy *phy)
162{
Alexander Aringf3ada642014-11-09 08:36:48 +0100163 struct cfg802154_registered_device *rdev = wpan_phy_to_rdev(phy);
164
Alexander Aringfcf39e62014-11-09 08:36:50 +0100165 wait_event(rdev->dev_wait, ({
166 int __count;
167 rtnl_lock();
168 __count = rdev->opencount;
169 rtnl_unlock();
170 __count == 0; }));
Alexander Aringf3ada642014-11-09 08:36:48 +0100171
172 rtnl_lock();
173 /* TODO nl802154 phy notify */
174 /* TODO phy registered lock */
175
Alexander Aringfcf39e62014-11-09 08:36:50 +0100176 WARN_ON(!list_empty(&rdev->wpan_dev_list));
Alexander Aringf3ada642014-11-09 08:36:48 +0100177
178 /* First remove the hardware from everywhere, this makes
179 * it impossible to find from userspace.
180 */
181 list_del_rcu(&rdev->list);
182 synchronize_rcu();
183
184 cfg802154_rdev_list_generation++;
185
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400186 device_del(&phy->dev);
Alexander Aringf3ada642014-11-09 08:36:48 +0100187
188 rtnl_unlock();
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400189}
190EXPORT_SYMBOL(wpan_phy_unregister);
191
192void wpan_phy_free(struct wpan_phy *phy)
193{
194 put_device(&phy->dev);
195}
196EXPORT_SYMBOL(wpan_phy_free);
197
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100198void cfg802154_dev_free(struct cfg802154_registered_device *rdev)
199{
200 kfree(rdev);
201}
202
Alexander Aringfcf39e62014-11-09 08:36:50 +0100203static void
204cfg802154_update_iface_num(struct cfg802154_registered_device *rdev,
205 int iftype, int num)
206{
207 ASSERT_RTNL();
208
209 rdev->num_running_ifaces += num;
210}
211
212static int cfg802154_netdev_notifier_call(struct notifier_block *nb,
213 unsigned long state, void *ptr)
214{
215 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
216 struct wpan_dev *wpan_dev = dev->ieee802154_ptr;
217 struct cfg802154_registered_device *rdev;
218
219 if (!wpan_dev)
220 return NOTIFY_DONE;
221
222 rdev = wpan_phy_to_rdev(wpan_dev->wpan_phy);
223
224 /* TODO WARN_ON unspec type */
225
226 switch (state) {
227 /* TODO NETDEV_DEVTYPE */
228 case NETDEV_REGISTER:
Nicolas Dichtelf9d1ce82015-02-05 18:21:30 +0100229 dev->features |= NETIF_F_NETNS_LOCAL;
Alexander Aringfcf39e62014-11-09 08:36:50 +0100230 wpan_dev->identifier = ++rdev->wpan_dev_id;
231 list_add_rcu(&wpan_dev->list, &rdev->wpan_dev_list);
232 rdev->devlist_generation++;
233
234 wpan_dev->netdev = dev;
235 break;
236 case NETDEV_DOWN:
237 cfg802154_update_iface_num(rdev, wpan_dev->iftype, -1);
238
239 rdev->opencount--;
240 wake_up(&rdev->dev_wait);
241 break;
242 case NETDEV_UP:
243 cfg802154_update_iface_num(rdev, wpan_dev->iftype, 1);
244
245 rdev->opencount++;
246 break;
247 case NETDEV_UNREGISTER:
248 /* It is possible to get NETDEV_UNREGISTER
249 * multiple times. To detect that, check
250 * that the interface is still on the list
251 * of registered interfaces, and only then
252 * remove and clean it up.
253 */
254 if (!list_empty(&wpan_dev->list)) {
255 list_del_rcu(&wpan_dev->list);
256 rdev->devlist_generation++;
257 }
258 /* synchronize (so that we won't find this netdev
259 * from other code any more) and then clear the list
260 * head so that the above code can safely check for
261 * !list_empty() to avoid double-cleanup.
262 */
263 synchronize_rcu();
264 INIT_LIST_HEAD(&wpan_dev->list);
265 break;
266 default:
267 return NOTIFY_DONE;
268 }
269
270 return NOTIFY_OK;
271}
272
273static struct notifier_block cfg802154_netdev_notifier = {
274 .notifier_call = cfg802154_netdev_notifier_call,
275};
276
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400277static int __init wpan_phy_class_init(void)
278{
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400279 int rc;
Varka Bhadram4710d802014-07-02 09:01:09 +0530280
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100281 rc = wpan_phy_sysfs_init();
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400282 if (rc)
283 goto err;
284
Alexander Aringfcf39e62014-11-09 08:36:50 +0100285 rc = register_netdevice_notifier(&cfg802154_netdev_notifier);
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400286 if (rc)
287 goto err_nl;
288
Alexander Aringfcf39e62014-11-09 08:36:50 +0100289 rc = ieee802154_nl_init();
290 if (rc)
291 goto err_notifier;
292
Alexander Aring79fe1a22014-11-09 08:36:53 +0100293 rc = nl802154_init();
294 if (rc)
295 goto err_ieee802154_nl;
296
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400297 return 0;
Alexander Aringfcf39e62014-11-09 08:36:50 +0100298
Alexander Aring79fe1a22014-11-09 08:36:53 +0100299err_ieee802154_nl:
300 ieee802154_nl_exit();
301
Alexander Aringfcf39e62014-11-09 08:36:50 +0100302err_notifier:
303 unregister_netdevice_notifier(&cfg802154_netdev_notifier);
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400304err_nl:
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100305 wpan_phy_sysfs_exit();
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400306err:
307 return rc;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400308}
Dmitry Eremin-Solenikov282a3952009-11-12 23:58:23 +0300309subsys_initcall(wpan_phy_class_init);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400310
311static void __exit wpan_phy_class_exit(void)
312{
Alexander Aring79fe1a22014-11-09 08:36:53 +0100313 nl802154_exit();
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400314 ieee802154_nl_exit();
Alexander Aringfcf39e62014-11-09 08:36:50 +0100315 unregister_netdevice_notifier(&cfg802154_netdev_notifier);
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100316 wpan_phy_sysfs_exit();
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400317}
318module_exit(wpan_phy_class_exit);
319
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400320MODULE_LICENSE("GPL v2");
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400321MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
322MODULE_AUTHOR("Dmitry Eremin-Solenikov");
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400323