blob: 4955e0fe5883ae705edb822b62aab36c93e7e646 [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 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16 *
17 */
18
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040020#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/device.h>
23
24#include <net/wpan-phy.h>
25
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +040026#include "ieee802154.h"
27
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040028#define MASTER_SHOW_COMPLEX(name, format_string, args...) \
29static ssize_t name ## _show(struct device *dev, \
30 struct device_attribute *attr, char *buf) \
31{ \
32 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev); \
33 int ret; \
34 \
35 mutex_lock(&phy->pib_lock); \
Dmitry Eremin-Solenikov375bb0e2009-09-28 18:58:32 +040036 ret = snprintf(buf, PAGE_SIZE, format_string "\n", args); \
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040037 mutex_unlock(&phy->pib_lock); \
38 return ret; \
Greg Kroah-Hartman7f4708a2013-07-24 15:05:34 -070039} \
40static DEVICE_ATTR_RO(name);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040041
42#define MASTER_SHOW(field, format_string) \
43 MASTER_SHOW_COMPLEX(field, format_string, phy->field)
44
45MASTER_SHOW(current_channel, "%d");
46MASTER_SHOW(current_page, "%d");
Phoebe Buckheister9b2777d2014-02-17 11:34:08 +010047MASTER_SHOW(transmit_power, "%d +- 1 dB");
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040048MASTER_SHOW(cca_mode, "%d");
49
Dmitry Eremin-Solenikova0b4a732009-09-22 15:26:48 +040050static ssize_t channels_supported_show(struct device *dev,
Varka Bhadram4710d802014-07-02 09:01:09 +053051 struct device_attribute *attr,
52 char *buf)
Dmitry Eremin-Solenikova0b4a732009-09-22 15:26:48 +040053{
54 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
55 int ret;
56 int i, len = 0;
57
58 mutex_lock(&phy->pib_lock);
59 for (i = 0; i < 32; i++) {
60 ret = snprintf(buf + len, PAGE_SIZE - len,
Varka Bhadram4710d802014-07-02 09:01:09 +053061 "%#09x\n", phy->channels_supported[i]);
Dmitry Eremin-Solenikova0b4a732009-09-22 15:26:48 +040062 if (ret < 0)
63 break;
64 len += ret;
65 }
66 mutex_unlock(&phy->pib_lock);
67 return len;
68}
Greg Kroah-Hartman7f4708a2013-07-24 15:05:34 -070069static DEVICE_ATTR_RO(channels_supported);
Dmitry Eremin-Solenikova0b4a732009-09-22 15:26:48 +040070
Greg Kroah-Hartman7f4708a2013-07-24 15:05:34 -070071static struct attribute *pmib_attrs[] = {
72 &dev_attr_current_channel.attr,
73 &dev_attr_current_page.attr,
74 &dev_attr_channels_supported.attr,
75 &dev_attr_transmit_power.attr,
76 &dev_attr_cca_mode.attr,
77 NULL,
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040078};
Greg Kroah-Hartman7f4708a2013-07-24 15:05:34 -070079ATTRIBUTE_GROUPS(pmib);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040080
81static void wpan_phy_release(struct device *d)
82{
83 struct wpan_phy *phy = container_of(d, struct wpan_phy, dev);
Varka Bhadram4710d802014-07-02 09:01:09 +053084
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040085 kfree(phy);
86}
87
88static struct class wpan_phy_class = {
89 .name = "ieee802154",
90 .dev_release = wpan_phy_release,
Greg Kroah-Hartman7f4708a2013-07-24 15:05:34 -070091 .dev_groups = pmib_groups,
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040092};
93
94static DEFINE_MUTEX(wpan_phy_mutex);
95static int wpan_phy_idx;
96
Michał Mirosław9f3b7952013-02-01 20:40:17 +010097static int wpan_phy_match(struct device *dev, const void *data)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +040098{
99 return !strcmp(dev_name(dev), (const char *)data);
100}
101
102struct wpan_phy *wpan_phy_find(const char *str)
103{
104 struct device *dev;
105
106 if (WARN_ON(!str))
107 return NULL;
108
Michał Mirosław9f3b7952013-02-01 20:40:17 +0100109 dev = class_find_device(&wpan_phy_class, NULL, str, wpan_phy_match);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400110 if (!dev)
111 return NULL;
112
113 return container_of(dev, struct wpan_phy, dev);
114}
115EXPORT_SYMBOL(wpan_phy_find);
116
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +0400117struct wpan_phy_iter_data {
118 int (*fn)(struct wpan_phy *phy, void *data);
119 void *data;
120};
121
122static int wpan_phy_iter(struct device *dev, void *_data)
123{
124 struct wpan_phy_iter_data *wpid = _data;
125 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
Varka Bhadram4710d802014-07-02 09:01:09 +0530126
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +0400127 return wpid->fn(phy, wpid->data);
128}
129
130int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
Varka Bhadram4710d802014-07-02 09:01:09 +0530131 void *data)
Dmitry Eremin-Solenikov1c889f42009-09-15 16:57:04 +0400132{
133 struct wpan_phy_iter_data wpid = {
134 .fn = fn,
135 .data = data,
136 };
137
138 return class_for_each_device(&wpan_phy_class, NULL,
139 &wpid, wpan_phy_iter);
140}
141EXPORT_SYMBOL(wpan_phy_for_each);
142
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400143static int wpan_phy_idx_valid(int idx)
144{
145 return idx >= 0;
146}
147
148struct wpan_phy *wpan_phy_alloc(size_t priv_size)
149{
150 struct wpan_phy *phy = kzalloc(sizeof(*phy) + priv_size,
151 GFP_KERNEL);
152
Denis Kirjanova6c0f822010-05-23 05:45:45 +0000153 if (!phy)
154 goto out;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400155 mutex_lock(&wpan_phy_mutex);
156 phy->idx = wpan_phy_idx++;
157 if (unlikely(!wpan_phy_idx_valid(phy->idx))) {
158 wpan_phy_idx--;
159 mutex_unlock(&wpan_phy_mutex);
160 kfree(phy);
Denis Kirjanova6c0f822010-05-23 05:45:45 +0000161 goto out;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400162 }
163 mutex_unlock(&wpan_phy_mutex);
164
165 mutex_init(&phy->pib_lock);
166
167 device_initialize(&phy->dev);
168 dev_set_name(&phy->dev, "wpan-phy%d", phy->idx);
169
170 phy->dev.class = &wpan_phy_class;
171
Dmitry Eremin-Solenikov37eb0ed2009-09-18 16:35:06 +0400172 phy->current_channel = -1; /* not initialised */
173 phy->current_page = 0; /* for compatibility */
174
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400175 return phy;
Denis Kirjanova6c0f822010-05-23 05:45:45 +0000176
177out:
178 return NULL;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400179}
180EXPORT_SYMBOL(wpan_phy_alloc);
181
Dmitry Eremin-Solenikove9cf3562009-09-28 19:01:20 +0400182int wpan_phy_register(struct wpan_phy *phy)
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400183{
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400184 return device_add(&phy->dev);
185}
186EXPORT_SYMBOL(wpan_phy_register);
187
188void wpan_phy_unregister(struct wpan_phy *phy)
189{
190 device_del(&phy->dev);
191}
192EXPORT_SYMBOL(wpan_phy_unregister);
193
194void wpan_phy_free(struct wpan_phy *phy)
195{
196 put_device(&phy->dev);
197}
198EXPORT_SYMBOL(wpan_phy_free);
199
200static int __init wpan_phy_class_init(void)
201{
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400202 int rc;
Varka Bhadram4710d802014-07-02 09:01:09 +0530203
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400204 rc = class_register(&wpan_phy_class);
205 if (rc)
206 goto err;
207
208 rc = ieee802154_nl_init();
209 if (rc)
210 goto err_nl;
211
212 return 0;
213err_nl:
214 class_unregister(&wpan_phy_class);
215err:
216 return rc;
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400217}
Dmitry Eremin-Solenikov282a3952009-11-12 23:58:23 +0300218subsys_initcall(wpan_phy_class_init);
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400219
220static void __exit wpan_phy_class_exit(void)
221{
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400222 ieee802154_nl_exit();
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400223 class_unregister(&wpan_phy_class);
224}
225module_exit(wpan_phy_class_exit);
226
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400227MODULE_LICENSE("GPL v2");
Dmitry Eremin-Solenikovcb6b3762009-09-10 17:50:12 +0400228MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
229MODULE_AUTHOR("Dmitry Eremin-Solenikov");
Dmitry Eremin-Solenikov2bfb1072009-08-14 16:13:12 +0400230