blob: d1cd0edfb14989bd3bb7bad6eee197314e758b04 [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>
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040021
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +040022#include "ieee802154.h"
Alexander Aringe23e9ec2014-10-28 18:21:32 +010023#include "sysfs.h"
Alexander Aringa5dd1d72014-11-02 04:18:35 +010024#include "core.h"
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040025
Michał Mirosław9f3b7952013-02-01 20:40:17 +010026static int wpan_phy_match(struct device *dev, const void *data)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040027{
28 return !strcmp(dev_name(dev), (const char *)data);
29}
30
31struct wpan_phy *wpan_phy_find(const char *str)
32{
33 struct device *dev;
34
35 if (WARN_ON(!str))
36 return NULL;
37
Michał Mirosław9f3b7952013-02-01 20:40:17 +010038 dev = class_find_device(&wpan_phy_class, NULL, str, wpan_phy_match);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040039 if (!dev)
40 return NULL;
41
42 return container_of(dev, struct wpan_phy, dev);
43}
44EXPORT_SYMBOL(wpan_phy_find);
45
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040046struct wpan_phy_iter_data {
47 int (*fn)(struct wpan_phy *phy, void *data);
48 void *data;
49};
50
51static int wpan_phy_iter(struct device *dev, void *_data)
52{
53 struct wpan_phy_iter_data *wpid = _data;
54 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
Varka Bhadram4710d802014-07-02 09:01:09 +053055
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040056 return wpid->fn(phy, wpid->data);
57}
58
59int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
Varka Bhadram4710d802014-07-02 09:01:09 +053060 void *data)
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +040061{
62 struct wpan_phy_iter_data wpid = {
63 .fn = fn,
64 .data = data,
65 };
66
67 return class_for_each_device(&wpan_phy_class, NULL,
68 &wpid, wpan_phy_iter);
69}
70EXPORT_SYMBOL(wpan_phy_for_each);
71
Alexander Aringa5dd1d72014-11-02 04:18:35 +010072struct wpan_phy *
73wpan_phy_alloc(const struct cfg802154_ops *ops, size_t priv_size)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040074{
Alexander Aring53f9ee612014-11-05 20:51:12 +010075 static atomic_t wpan_phy_counter = ATOMIC_INIT(0);
Alexander Aringa5dd1d72014-11-02 04:18:35 +010076 struct cfg802154_registered_device *rdev;
77 size_t alloc_size;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040078
Alexander Aringa5dd1d72014-11-02 04:18:35 +010079 alloc_size = sizeof(*rdev) + priv_size;
80 rdev = kzalloc(alloc_size, GFP_KERNEL);
81 if (!rdev)
82 return NULL;
83
84 rdev->ops = ops;
85
Alexander Aring53f9ee612014-11-05 20:51:12 +010086 rdev->wpan_phy_idx = atomic_inc_return(&wpan_phy_counter);
87
88 if (unlikely(rdev->wpan_phy_idx < 0)) {
89 /* ugh, wrapped! */
90 atomic_dec(&wpan_phy_counter);
Alexander Aringa5dd1d72014-11-02 04:18:35 +010091 kfree(rdev);
Alexander Aring53f9ee612014-11-05 20:51:12 +010092 return NULL;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040093 }
Alexander Aring53f9ee612014-11-05 20:51:12 +010094
95 /* atomic_inc_return makes it start at 1, make it start at 0 */
96 rdev->wpan_phy_idx--;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040097
Alexander Aringa5dd1d72014-11-02 04:18:35 +010098 mutex_init(&rdev->wpan_phy.pib_lock);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040099
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100100 device_initialize(&rdev->wpan_phy.dev);
Alexander Aring53f9ee612014-11-05 20:51:12 +0100101 dev_set_name(&rdev->wpan_phy.dev, "wpan-phy%d", rdev->wpan_phy_idx);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400102
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100103 rdev->wpan_phy.dev.class = &wpan_phy_class;
104 rdev->wpan_phy.dev.platform_data = rdev;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400105
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100106 return &rdev->wpan_phy;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400107}
108EXPORT_SYMBOL(wpan_phy_alloc);
109
Dmitry Eremin-Solenikove9cf3562009-09-28 19:01:20 +0400110int wpan_phy_register(struct wpan_phy *phy)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400111{
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400112 return device_add(&phy->dev);
113}
114EXPORT_SYMBOL(wpan_phy_register);
115
116void wpan_phy_unregister(struct wpan_phy *phy)
117{
118 device_del(&phy->dev);
119}
120EXPORT_SYMBOL(wpan_phy_unregister);
121
122void wpan_phy_free(struct wpan_phy *phy)
123{
124 put_device(&phy->dev);
125}
126EXPORT_SYMBOL(wpan_phy_free);
127
Alexander Aringa5dd1d72014-11-02 04:18:35 +0100128void cfg802154_dev_free(struct cfg802154_registered_device *rdev)
129{
130 kfree(rdev);
131}
132
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400133static int __init wpan_phy_class_init(void)
134{
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400135 int rc;
Varka Bhadram4710d802014-07-02 09:01:09 +0530136
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100137 rc = wpan_phy_sysfs_init();
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400138 if (rc)
139 goto err;
140
141 rc = ieee802154_nl_init();
142 if (rc)
143 goto err_nl;
144
145 return 0;
146err_nl:
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100147 wpan_phy_sysfs_exit();
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400148err:
149 return rc;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400150}
Dmitry Eremin-Solenikov282a3952009-11-12 23:58:23 +0300151subsys_initcall(wpan_phy_class_init);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400152
153static void __exit wpan_phy_class_exit(void)
154{
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400155 ieee802154_nl_exit();
Alexander Aringe23e9ec2014-10-28 18:21:32 +0100156 wpan_phy_sysfs_exit();
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400157}
158module_exit(wpan_phy_class_exit);
159
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400160MODULE_LICENSE("GPL v2");
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400161MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
162MODULE_AUTHOR("Dmitry Eremin-Solenikov");
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400163