mac802154: rx: use tasklet instead workqueue
[deliverable/linux.git] / net / mac802154 / main.c
CommitLineData
1010f540 1/*
2 * Copyright (C) 2007-2012 Siemens AG
3 *
4 * Written by:
5 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
6 *
7 * Based on the code from 'linux-zigbee.sourceforge.net' project.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
1010f540 17 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/netdevice.h>
22
62610ad2 23#include <net/netlink.h>
24#include <linux/nl802154.h>
1010f540 25#include <net/mac802154.h>
b70ab2e8 26#include <net/ieee802154_netdev.h>
1010f540 27#include <net/route.h>
5ad60d36 28#include <net/cfg802154.h>
1010f540 29
0f1556bc 30#include "ieee802154_i.h"
1010f540 31
62610ad2 32int mac802154_slave_open(struct net_device *dev)
33{
59d19cd7 34 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
036562f9 35 struct ieee802154_sub_if_data *subif;
04e850fe 36 struct ieee802154_local *local = sdata->local;
62610ad2 37 int res = 0;
38
336908f6
PB
39 ASSERT_RTNL();
40
036562f9 41 if (sdata->type == IEEE802154_DEV_WPAN) {
d98be45b
AA
42 mutex_lock(&sdata->local->iflist_mtx);
43 list_for_each_entry(subif, &sdata->local->interfaces, list) {
036562f9 44 if (subif != sdata && subif->type == sdata->type &&
336908f6 45 subif->running) {
d98be45b 46 mutex_unlock(&sdata->local->iflist_mtx);
336908f6
PB
47 return -EBUSY;
48 }
49 }
d98be45b 50 mutex_unlock(&sdata->local->iflist_mtx);
336908f6
PB
51 }
52
d98be45b 53 mutex_lock(&sdata->local->iflist_mtx);
036562f9 54 sdata->running = true;
d98be45b 55 mutex_unlock(&sdata->local->iflist_mtx);
336908f6 56
a5e1ec53
AA
57 if (local->open_count++ == 0) {
58 res = local->ops->start(&local->hw);
62610ad2 59 WARN_ON(res);
60 if (res)
61 goto err;
62 }
63
62610ad2 64 netif_start_queue(dev);
65 return 0;
66err:
04e850fe 67 sdata->local->open_count--;
62610ad2 68
69 return res;
70}
71
72int mac802154_slave_close(struct net_device *dev)
73{
59d19cd7 74 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
04e850fe 75 struct ieee802154_local *local = sdata->local;
62610ad2 76
336908f6
PB
77 ASSERT_RTNL();
78
62610ad2 79 netif_stop_queue(dev);
80
d98be45b 81 mutex_lock(&sdata->local->iflist_mtx);
036562f9 82 sdata->running = false;
d98be45b 83 mutex_unlock(&sdata->local->iflist_mtx);
336908f6 84
a5e1ec53
AA
85 if (!--local->open_count)
86 local->ops->stop(&local->hw);
62610ad2 87
88 return 0;
89}
90
91static int
92mac802154_netdev_register(struct wpan_phy *phy, struct net_device *dev)
93{
59d19cd7 94 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
a5e1ec53 95 struct ieee802154_local *local;
62610ad2 96 int err;
97
a5e1ec53 98 local = wpan_phy_priv(phy);
62610ad2 99
036562f9 100 sdata->dev = dev;
04e850fe 101 sdata->local = local;
62610ad2 102
a5e1ec53 103 dev->needed_headroom = local->hw.extra_tx_headroom;
62610ad2 104
a5e1ec53 105 SET_NETDEV_DEV(dev, &local->phy->dev);
62610ad2 106
d98be45b 107 mutex_lock(&local->iflist_mtx);
a5e1ec53 108 if (!local->running) {
d98be45b 109 mutex_unlock(&local->iflist_mtx);
62610ad2 110 return -ENODEV;
111 }
d98be45b 112 mutex_unlock(&local->iflist_mtx);
62610ad2 113
114 err = register_netdev(dev);
115 if (err < 0)
116 return err;
117
118 rtnl_lock();
d98be45b
AA
119 mutex_lock(&local->iflist_mtx);
120 list_add_tail_rcu(&sdata->list, &local->interfaces);
121 mutex_unlock(&local->iflist_mtx);
62610ad2 122 rtnl_unlock();
123
124 return 0;
125}
126
127static void
128mac802154_del_iface(struct wpan_phy *phy, struct net_device *dev)
129{
59d19cd7 130 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
4710d806 131
62610ad2 132 ASSERT_RTNL();
62610ad2 133
04e850fe 134 BUG_ON(sdata->local->phy != phy);
62610ad2 135
d98be45b 136 mutex_lock(&sdata->local->iflist_mtx);
62610ad2 137 list_del_rcu(&sdata->list);
d98be45b 138 mutex_unlock(&sdata->local->iflist_mtx);
62610ad2 139
140 synchronize_rcu();
141 unregister_netdevice(sdata->dev);
142}
143
144static struct net_device *
145mac802154_add_iface(struct wpan_phy *phy, const char *name, int type)
146{
147 struct net_device *dev;
148 int err = -ENOMEM;
149
62610ad2 150 switch (type) {
0606069d 151 case IEEE802154_DEV_MONITOR:
036562f9 152 dev = alloc_netdev(sizeof(struct ieee802154_sub_if_data),
c835a677
TG
153 name, NET_NAME_UNKNOWN,
154 mac802154_monitor_setup);
0606069d 155 break;
32bad7e3 156 case IEEE802154_DEV_WPAN:
036562f9 157 dev = alloc_netdev(sizeof(struct ieee802154_sub_if_data),
c835a677
TG
158 name, NET_NAME_UNKNOWN,
159 mac802154_wpan_setup);
32bad7e3 160 break;
62610ad2 161 default:
162 dev = NULL;
163 err = -EINVAL;
164 break;
165 }
166 if (!dev)
167 goto err;
168
169 err = mac802154_netdev_register(phy, dev);
170 if (err)
171 goto err_free;
172
173 dev_hold(dev); /* we return an incremented device refcount */
174 return dev;
175
176err_free:
177 free_netdev(dev);
178err:
179 return ERR_PTR(err);
180}
181
9b2777d6
PB
182static int mac802154_set_txpower(struct wpan_phy *phy, int db)
183{
a5e1ec53 184 struct ieee802154_local *local = wpan_phy_priv(phy);
9b2777d6 185
a5e1ec53 186 return local->ops->set_txpower(&local->hw, db);
9b2777d6
PB
187}
188
84dda3c6
PB
189static int mac802154_set_lbt(struct wpan_phy *phy, bool on)
190{
a5e1ec53 191 struct ieee802154_local *local = wpan_phy_priv(phy);
84dda3c6 192
a5e1ec53 193 return local->ops->set_lbt(&local->hw, on);
84dda3c6
PB
194}
195
ba08fea5
PB
196static int mac802154_set_cca_mode(struct wpan_phy *phy, u8 mode)
197{
a5e1ec53 198 struct ieee802154_local *local = wpan_phy_priv(phy);
ba08fea5 199
a5e1ec53 200 return local->ops->set_cca_mode(&local->hw, mode);
ba08fea5
PB
201}
202
6ca00197
PB
203static int mac802154_set_cca_ed_level(struct wpan_phy *phy, s32 level)
204{
a5e1ec53 205 struct ieee802154_local *local = wpan_phy_priv(phy);
6ca00197 206
a5e1ec53 207 return local->ops->set_cca_ed_level(&local->hw, level);
6ca00197
PB
208}
209
4244db1b
PB
210static int mac802154_set_csma_params(struct wpan_phy *phy, u8 min_be,
211 u8 max_be, u8 retries)
212{
a5e1ec53 213 struct ieee802154_local *local = wpan_phy_priv(phy);
4244db1b 214
a5e1ec53 215 return local->ops->set_csma_params(&local->hw, min_be, max_be, retries);
4244db1b
PB
216}
217
218static int mac802154_set_frame_retries(struct wpan_phy *phy, s8 retries)
219{
a5e1ec53 220 struct ieee802154_local *local = wpan_phy_priv(phy);
4244db1b 221
a5e1ec53 222 return local->ops->set_frame_retries(&local->hw, retries);
4244db1b
PB
223}
224
c5c47e67
AA
225static void ieee802154_tasklet_handler(unsigned long data)
226{
227 struct ieee802154_local *local = (struct ieee802154_local *)data;
228 struct sk_buff *skb;
229
230 while ((skb = skb_dequeue(&local->skb_queue))) {
231 switch (skb->pkt_type) {
232 case IEEE802154_RX_MSG:
233 /* Clear skb->pkt_type in order to not confuse kernel
234 * netstack.
235 */
236 skb->pkt_type = 0;
237 ieee802154_rx(&local->hw, skb);
238 break;
239 default:
240 WARN(1, "mac802154: Packet is of unknown type %d\n",
241 skb->pkt_type);
242 kfree_skb(skb);
243 break;
244 }
245 }
246}
247
5a504397
AA
248struct ieee802154_hw *
249ieee802154_alloc_hw(size_t priv_data_len, struct ieee802154_ops *ops)
1010f540 250{
251 struct wpan_phy *phy;
a5e1ec53 252 struct ieee802154_local *local;
1010f540 253 size_t priv_size;
254
ed0a5dce
AA
255 if (!ops || !(ops->xmit_async || ops->xmit_sync) || !ops->ed ||
256 !ops->start || !ops->stop || !ops->set_channel) {
83a1a7ce 257 pr_err("undefined IEEE802.15.4 device operations\n");
1010f540 258 return NULL;
259 }
260
261 /* Ensure 32-byte alignment of our private data and hw private data.
a5e1ec53 262 * We use the wpan_phy priv data for both our ieee802154_local and for
1010f540 263 * the driver's private data
264 *
265 * in memory it'll be like this:
266 *
a5e1ec53
AA
267 * +-------------------------+
268 * | struct wpan_phy |
269 * +-------------------------+
270 * | struct ieee802154_local |
271 * +-------------------------+
272 * | driver's private data |
273 * +-------------------------+
1010f540 274 *
275 * Due to ieee802154 layer isn't aware of driver and MAC structures,
139f14ad 276 * so lets align them here.
1010f540 277 */
278
a5e1ec53 279 priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
1010f540 280
281 phy = wpan_phy_alloc(priv_size);
282 if (!phy) {
83a1a7ce 283 pr_err("failure to allocate master IEEE802.15.4 device\n");
1010f540 284 return NULL;
285 }
286
a5e1ec53
AA
287 local = wpan_phy_priv(phy);
288 local->phy = phy;
289 local->hw.phy = local->phy;
290 local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
291 local->ops = ops;
1010f540 292
d98be45b
AA
293 INIT_LIST_HEAD(&local->interfaces);
294 mutex_init(&local->iflist_mtx);
1010f540 295
c5c47e67
AA
296 tasklet_init(&local->tasklet,
297 ieee802154_tasklet_handler,
298 (unsigned long)local);
299
300 skb_queue_head_init(&local->skb_queue);
301
a5e1ec53 302 return &local->hw;
1010f540 303}
5a504397 304EXPORT_SYMBOL(ieee802154_alloc_hw);
1010f540 305
5a504397 306void ieee802154_free_hw(struct ieee802154_hw *hw)
1010f540 307{
60741361 308 struct ieee802154_local *local = hw_to_local(hw);
1010f540 309
d98be45b 310 BUG_ON(!list_empty(&local->interfaces));
62610ad2 311
d98be45b 312 mutex_destroy(&local->iflist_mtx);
1e9f9545 313
a5e1ec53 314 wpan_phy_free(local->phy);
1010f540 315}
5a504397 316EXPORT_SYMBOL(ieee802154_free_hw);
1010f540 317
5a504397 318int ieee802154_register_hw(struct ieee802154_hw *hw)
1010f540 319{
60741361 320 struct ieee802154_local *local = hw_to_local(hw);
640985ec
AA
321 int rc = -ENOSYS;
322
5a504397 323 if (hw->flags & IEEE802154_HW_TXPOWER) {
a5e1ec53 324 if (!local->ops->set_txpower)
640985ec
AA
325 goto out;
326
a5e1ec53 327 local->phy->set_txpower = mac802154_set_txpower;
640985ec
AA
328 }
329
5a504397 330 if (hw->flags & IEEE802154_HW_LBT) {
a5e1ec53 331 if (!local->ops->set_lbt)
640985ec
AA
332 goto out;
333
a5e1ec53 334 local->phy->set_lbt = mac802154_set_lbt;
640985ec
AA
335 }
336
5a504397 337 if (hw->flags & IEEE802154_HW_CCA_MODE) {
a5e1ec53 338 if (!local->ops->set_cca_mode)
640985ec
AA
339 goto out;
340
a5e1ec53 341 local->phy->set_cca_mode = mac802154_set_cca_mode;
640985ec
AA
342 }
343
5a504397 344 if (hw->flags & IEEE802154_HW_CCA_ED_LEVEL) {
a5e1ec53 345 if (!local->ops->set_cca_ed_level)
640985ec
AA
346 goto out;
347
a5e1ec53 348 local->phy->set_cca_ed_level = mac802154_set_cca_ed_level;
640985ec
AA
349 }
350
5a504397 351 if (hw->flags & IEEE802154_HW_CSMA_PARAMS) {
a5e1ec53 352 if (!local->ops->set_csma_params)
640985ec
AA
353 goto out;
354
a5e1ec53 355 local->phy->set_csma_params = mac802154_set_csma_params;
640985ec
AA
356 }
357
5a504397 358 if (hw->flags & IEEE802154_HW_FRAME_RETRIES) {
a5e1ec53 359 if (!local->ops->set_frame_retries)
640985ec
AA
360 goto out;
361
a5e1ec53 362 local->phy->set_frame_retries = mac802154_set_frame_retries;
640985ec 363 }
1010f540 364
f7730542 365 local->workqueue =
a5e1ec53 366 create_singlethread_workqueue(wpan_phy_name(local->phy));
f7730542 367 if (!local->workqueue) {
640985ec 368 rc = -ENOMEM;
1010f540 369 goto out;
640985ec 370 }
1010f540 371
a5e1ec53 372 wpan_phy_set_dev(local->phy, local->hw.parent);
1010f540 373
a5e1ec53
AA
374 local->phy->add_iface = mac802154_add_iface;
375 local->phy->del_iface = mac802154_del_iface;
62610ad2 376
a5e1ec53 377 rc = wpan_phy_register(local->phy);
1010f540 378 if (rc < 0)
379 goto out_wq;
380
381 rtnl_lock();
382
d98be45b 383 mutex_lock(&local->iflist_mtx);
a5e1ec53 384 local->running = MAC802154_DEVICE_RUN;
d98be45b 385 mutex_unlock(&local->iflist_mtx);
1010f540 386
387 rtnl_unlock();
388
389 return 0;
390
391out_wq:
f7730542 392 destroy_workqueue(local->workqueue);
1010f540 393out:
394 return rc;
395}
5a504397 396EXPORT_SYMBOL(ieee802154_register_hw);
1010f540 397
5a504397 398void ieee802154_unregister_hw(struct ieee802154_hw *hw)
1010f540 399{
60741361 400 struct ieee802154_local *local = hw_to_local(hw);
036562f9 401 struct ieee802154_sub_if_data *sdata, *next;
1010f540 402
c5c47e67 403 tasklet_kill(&local->tasklet);
f7730542
AA
404 flush_workqueue(local->workqueue);
405 destroy_workqueue(local->workqueue);
1010f540 406
407 rtnl_lock();
408
d98be45b 409 mutex_lock(&local->iflist_mtx);
a5e1ec53 410 local->running = MAC802154_DEVICE_STOPPED;
d98be45b 411 mutex_unlock(&local->iflist_mtx);
1010f540 412
d98be45b
AA
413 list_for_each_entry_safe(sdata, next, &local->interfaces, list) {
414 mutex_lock(&sdata->local->iflist_mtx);
62610ad2 415 list_del(&sdata->list);
d98be45b 416 mutex_unlock(&sdata->local->iflist_mtx);
62610ad2 417
418 unregister_netdevice(sdata->dev);
419 }
420
1010f540 421 rtnl_unlock();
422
a5e1ec53 423 wpan_phy_unregister(local->phy);
1010f540 424}
5a504397 425EXPORT_SYMBOL(ieee802154_unregister_hw);
1010f540 426
427MODULE_DESCRIPTION("IEEE 802.15.4 implementation");
428MODULE_LICENSE("GPL v2");
This page took 0.167506 seconds and 5 git commands to generate.