pcmcia: fix yenta dependency on PCCARD_NONSTATIC
[linux-2.6/btrfs-unstable.git] / net / ieee802154 / wpan-class.c
blob268691256a6d2b915caeb7a951cce97aed98ecdf
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/kernel.h>
20 #include <linux/module.h>
21 #include <linux/device.h>
23 #include <net/wpan-phy.h>
25 #include "ieee802154.h"
27 #define MASTER_SHOW_COMPLEX(name, format_string, args...) \
28 static ssize_t name ## _show(struct device *dev, \
29 struct device_attribute *attr, char *buf) \
30 { \
31 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev); \
32 int ret; \
34 mutex_lock(&phy->pib_lock); \
35 ret = snprintf(buf, PAGE_SIZE, format_string "\n", args); \
36 mutex_unlock(&phy->pib_lock); \
37 return ret; \
40 #define MASTER_SHOW(field, format_string) \
41 MASTER_SHOW_COMPLEX(field, format_string, phy->field)
43 MASTER_SHOW(current_channel, "%d");
44 MASTER_SHOW(current_page, "%d");
45 MASTER_SHOW_COMPLEX(transmit_power, "%d +- %d dB",
46 ((signed char) (phy->transmit_power << 2)) >> 2,
47 (phy->transmit_power >> 6) ? (phy->transmit_power >> 6) * 3 : 1 );
48 MASTER_SHOW(cca_mode, "%d");
50 static ssize_t channels_supported_show(struct device *dev,
51 struct device_attribute *attr, char *buf)
53 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
54 int ret;
55 int i, len = 0;
57 mutex_lock(&phy->pib_lock);
58 for (i = 0; i < 32; i++) {
59 ret = snprintf(buf + len, PAGE_SIZE - len,
60 "%#09x\n", phy->channels_supported[i]);
61 if (ret < 0)
62 break;
63 len += ret;
65 mutex_unlock(&phy->pib_lock);
66 return len;
69 static struct device_attribute pmib_attrs[] = {
70 __ATTR_RO(current_channel),
71 __ATTR_RO(current_page),
72 __ATTR_RO(channels_supported),
73 __ATTR_RO(transmit_power),
74 __ATTR_RO(cca_mode),
75 {},
78 static void wpan_phy_release(struct device *d)
80 struct wpan_phy *phy = container_of(d, struct wpan_phy, dev);
81 kfree(phy);
84 static struct class wpan_phy_class = {
85 .name = "ieee802154",
86 .dev_release = wpan_phy_release,
87 .dev_attrs = pmib_attrs,
90 static DEFINE_MUTEX(wpan_phy_mutex);
91 static int wpan_phy_idx;
93 static int wpan_phy_match(struct device *dev, void *data)
95 return !strcmp(dev_name(dev), (const char *)data);
98 struct wpan_phy *wpan_phy_find(const char *str)
100 struct device *dev;
102 if (WARN_ON(!str))
103 return NULL;
105 dev = class_find_device(&wpan_phy_class, NULL,
106 (void *)str, wpan_phy_match);
107 if (!dev)
108 return NULL;
110 return container_of(dev, struct wpan_phy, dev);
112 EXPORT_SYMBOL(wpan_phy_find);
114 struct wpan_phy_iter_data {
115 int (*fn)(struct wpan_phy *phy, void *data);
116 void *data;
119 static int wpan_phy_iter(struct device *dev, void *_data)
121 struct wpan_phy_iter_data *wpid = _data;
122 struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
123 return wpid->fn(phy, wpid->data);
126 int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
127 void *data)
129 struct wpan_phy_iter_data wpid = {
130 .fn = fn,
131 .data = data,
134 return class_for_each_device(&wpan_phy_class, NULL,
135 &wpid, wpan_phy_iter);
137 EXPORT_SYMBOL(wpan_phy_for_each);
139 static int wpan_phy_idx_valid(int idx)
141 return idx >= 0;
144 struct wpan_phy *wpan_phy_alloc(size_t priv_size)
146 struct wpan_phy *phy = kzalloc(sizeof(*phy) + priv_size,
147 GFP_KERNEL);
149 mutex_lock(&wpan_phy_mutex);
150 phy->idx = wpan_phy_idx++;
151 if (unlikely(!wpan_phy_idx_valid(phy->idx))) {
152 wpan_phy_idx--;
153 mutex_unlock(&wpan_phy_mutex);
154 kfree(phy);
155 return NULL;
157 mutex_unlock(&wpan_phy_mutex);
159 mutex_init(&phy->pib_lock);
161 device_initialize(&phy->dev);
162 dev_set_name(&phy->dev, "wpan-phy%d", phy->idx);
164 phy->dev.class = &wpan_phy_class;
166 phy->current_channel = -1; /* not initialised */
167 phy->current_page = 0; /* for compatibility */
169 return phy;
171 EXPORT_SYMBOL(wpan_phy_alloc);
173 int wpan_phy_register(struct wpan_phy *phy)
175 return device_add(&phy->dev);
177 EXPORT_SYMBOL(wpan_phy_register);
179 void wpan_phy_unregister(struct wpan_phy *phy)
181 device_del(&phy->dev);
183 EXPORT_SYMBOL(wpan_phy_unregister);
185 void wpan_phy_free(struct wpan_phy *phy)
187 put_device(&phy->dev);
189 EXPORT_SYMBOL(wpan_phy_free);
191 static int __init wpan_phy_class_init(void)
193 int rc;
194 rc = class_register(&wpan_phy_class);
195 if (rc)
196 goto err;
198 rc = ieee802154_nl_init();
199 if (rc)
200 goto err_nl;
202 return 0;
203 err_nl:
204 class_unregister(&wpan_phy_class);
205 err:
206 return rc;
208 subsys_initcall(wpan_phy_class_init);
210 static void __exit wpan_phy_class_exit(void)
212 ieee802154_nl_exit();
213 class_unregister(&wpan_phy_class);
215 module_exit(wpan_phy_class_exit);
217 MODULE_LICENSE("GPL v2");
218 MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
219 MODULE_AUTHOR("Dmitry Eremin-Solenikov");