GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / net / ieee802154 / wpan-class.c
blob39636d1ee4c25945bc109d7bdb39589f36307e8e
1 /*
2 * Copyright (C) 2007, 2008, 2009 Siemens AG
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.
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.
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.
19 #include <linux/slab.h>
20 #include <linux/kernel.h>
21 #include <linux/module.h>
22 #include <linux/device.h>
24 #include <net/wpan-phy.h>
26 #include "ieee802154.h"
28 #define MASTER_SHOW_COMPLEX(name, format_string, args...) \
29 static 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; \
35 mutex_lock(&phy->pib_lock); \
36 ret = snprintf(buf, PAGE_SIZE, format_string "\n", args); \
37 mutex_unlock(&phy->pib_lock); \
38 return ret; \
41 #define MASTER_SHOW(field, format_string) \
42 MASTER_SHOW_COMPLEX(field, format_string, phy->field)
44 MASTER_SHOW(current_channel, "%d");
45 MASTER_SHOW(current_page, "%d");
46 MASTER_SHOW_COMPLEX(transmit_power, "%d +- %d dB",
47 ((signed char) (phy->transmit_power << 2)) >> 2,
48 (phy->transmit_power >> 6) ? (phy->transmit_power >> 6) * 3 : 1 );
49 MASTER_SHOW(cca_mode, "%d");
51 static ssize_t channels_supported_show(struct device *dev,
52 struct device_attribute *attr, char *buf)
54 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
55 int ret;
56 int i, len = 0;
58 mutex_lock(&phy->pib_lock);
59 for (i = 0; i < 32; i++) {
60 ret = snprintf(buf + len, PAGE_SIZE - len,
61 "%#09x\n", phy->channels_supported[i]);
62 if (ret < 0)
63 break;
64 len += ret;
66 mutex_unlock(&phy->pib_lock);
67 return len;
70 static struct device_attribute pmib_attrs[] = {
71 __ATTR_RO(current_channel),
72 __ATTR_RO(current_page),
73 __ATTR_RO(channels_supported),
74 __ATTR_RO(transmit_power),
75 __ATTR_RO(cca_mode),
76 {},
79 static void wpan_phy_release(struct device *d)
81 struct wpan_phy *phy = container_of(d, struct wpan_phy, dev);
82 kfree(phy);
85 static struct class wpan_phy_class = {
86 .name = "ieee802154",
87 .dev_release = wpan_phy_release,
88 .dev_attrs = pmib_attrs,
91 static DEFINE_MUTEX(wpan_phy_mutex);
92 static int wpan_phy_idx;
94 static int wpan_phy_match(struct device *dev, void *data)
96 return !strcmp(dev_name(dev), (const char *)data);
99 struct wpan_phy *wpan_phy_find(const char *str)
101 struct device *dev;
103 if (WARN_ON(!str))
104 return NULL;
106 dev = class_find_device(&wpan_phy_class, NULL,
107 (void *)str, wpan_phy_match);
108 if (!dev)
109 return NULL;
111 return container_of(dev, struct wpan_phy, dev);
113 EXPORT_SYMBOL(wpan_phy_find);
115 struct wpan_phy_iter_data {
116 int (*fn)(struct wpan_phy *phy, void *data);
117 void *data;
120 static int wpan_phy_iter(struct device *dev, void *_data)
122 struct wpan_phy_iter_data *wpid = _data;
123 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
124 return wpid->fn(phy, wpid->data);
127 int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
128 void *data)
130 struct wpan_phy_iter_data wpid = {
131 .fn = fn,
132 .data = data,
135 return class_for_each_device(&wpan_phy_class, NULL,
136 &wpid, wpan_phy_iter);
138 EXPORT_SYMBOL(wpan_phy_for_each);
140 static int wpan_phy_idx_valid(int idx)
142 return idx >= 0;
145 struct wpan_phy *wpan_phy_alloc(size_t priv_size)
147 struct wpan_phy *phy = kzalloc(sizeof(*phy) + priv_size,
148 GFP_KERNEL);
150 if (!phy)
151 goto out;
152 mutex_lock(&wpan_phy_mutex);
153 phy->idx = wpan_phy_idx++;
154 if (unlikely(!wpan_phy_idx_valid(phy->idx))) {
155 wpan_phy_idx--;
156 mutex_unlock(&wpan_phy_mutex);
157 kfree(phy);
158 goto out;
160 mutex_unlock(&wpan_phy_mutex);
162 mutex_init(&phy->pib_lock);
164 device_initialize(&phy->dev);
165 dev_set_name(&phy->dev, "wpan-phy%d", phy->idx);
167 phy->dev.class = &wpan_phy_class;
169 phy->current_channel = -1; /* not initialised */
170 phy->current_page = 0; /* for compatibility */
172 return phy;
174 out:
175 return NULL;
177 EXPORT_SYMBOL(wpan_phy_alloc);
179 int wpan_phy_register(struct wpan_phy *phy)
181 return device_add(&phy->dev);
183 EXPORT_SYMBOL(wpan_phy_register);
185 void wpan_phy_unregister(struct wpan_phy *phy)
187 device_del(&phy->dev);
189 EXPORT_SYMBOL(wpan_phy_unregister);
191 void wpan_phy_free(struct wpan_phy *phy)
193 put_device(&phy->dev);
195 EXPORT_SYMBOL(wpan_phy_free);
197 static int __init wpan_phy_class_init(void)
199 int rc;
200 rc = class_register(&wpan_phy_class);
201 if (rc)
202 goto err;
204 rc = ieee802154_nl_init();
205 if (rc)
206 goto err_nl;
208 return 0;
209 err_nl:
210 class_unregister(&wpan_phy_class);
211 err:
212 return rc;
214 subsys_initcall(wpan_phy_class_init);
216 static void __exit wpan_phy_class_exit(void)
218 ieee802154_nl_exit();
219 class_unregister(&wpan_phy_class);
221 module_exit(wpan_phy_class_exit);
223 MODULE_LICENSE("GPL v2");
224 MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
225 MODULE_AUTHOR("Dmitry Eremin-Solenikov");