]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/mac802154/main.c
at86rf230: remove hrtimer on 1 usec delay
[mirror_ubuntu-bionic-kernel.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 *
1010f540 7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
1010f540 15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/netdevice.h>
20
62610ad2 21#include <net/netlink.h>
944742a3 22#include <net/nl802154.h>
1010f540 23#include <net/mac802154.h>
b70ab2e8 24#include <net/ieee802154_netdev.h>
1010f540 25#include <net/route.h>
5ad60d36 26#include <net/cfg802154.h>
1010f540 27
0f1556bc 28#include "ieee802154_i.h"
1201cd22 29#include "cfg.h"
1010f540 30
c5c47e67
AA
31static void ieee802154_tasklet_handler(unsigned long data)
32{
33 struct ieee802154_local *local = (struct ieee802154_local *)data;
34 struct sk_buff *skb;
35
36 while ((skb = skb_dequeue(&local->skb_queue))) {
37 switch (skb->pkt_type) {
38 case IEEE802154_RX_MSG:
39 /* Clear skb->pkt_type in order to not confuse kernel
40 * netstack.
41 */
42 skb->pkt_type = 0;
d10270ce 43 ieee802154_rx(local, skb);
c5c47e67
AA
44 break;
45 default:
46 WARN(1, "mac802154: Packet is of unknown type %d\n",
47 skb->pkt_type);
48 kfree_skb(skb);
49 break;
50 }
51 }
52}
53
5a504397 54struct ieee802154_hw *
16301861 55ieee802154_alloc_hw(size_t priv_data_len, const struct ieee802154_ops *ops)
1010f540 56{
57 struct wpan_phy *phy;
a5e1ec53 58 struct ieee802154_local *local;
1010f540 59 size_t priv_size;
60
8f451829
VB
61 if (WARN_ON(!ops || !(ops->xmit_async || ops->xmit_sync) || !ops->ed ||
62 !ops->start || !ops->stop || !ops->set_channel))
1010f540 63 return NULL;
1010f540 64
65 /* Ensure 32-byte alignment of our private data and hw private data.
a5e1ec53 66 * We use the wpan_phy priv data for both our ieee802154_local and for
1010f540 67 * the driver's private data
68 *
69 * in memory it'll be like this:
70 *
a5e1ec53
AA
71 * +-------------------------+
72 * | struct wpan_phy |
73 * +-------------------------+
74 * | struct ieee802154_local |
75 * +-------------------------+
76 * | driver's private data |
77 * +-------------------------+
1010f540 78 *
79 * Due to ieee802154 layer isn't aware of driver and MAC structures,
139f14ad 80 * so lets align them here.
1010f540 81 */
82
a5e1ec53 83 priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
1010f540 84
f601379f 85 phy = wpan_phy_new(&mac802154_config_ops, priv_size);
1010f540 86 if (!phy) {
83a1a7ce 87 pr_err("failure to allocate master IEEE802.15.4 device\n");
1010f540 88 return NULL;
89 }
90
6322d50d
AA
91 phy->privid = mac802154_wpan_phy_privid;
92
a5e1ec53
AA
93 local = wpan_phy_priv(phy);
94 local->phy = phy;
95 local->hw.phy = local->phy;
96 local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
97 local->ops = ops;
1010f540 98
d98be45b
AA
99 INIT_LIST_HEAD(&local->interfaces);
100 mutex_init(&local->iflist_mtx);
1010f540 101
c5c47e67
AA
102 tasklet_init(&local->tasklet,
103 ieee802154_tasklet_handler,
104 (unsigned long)local);
105
106 skb_queue_head_init(&local->skb_queue);
107
fea3318d
AA
108 /* init supported flags with 802.15.4 default ranges */
109 phy->supported.max_minbe = 8;
110 phy->supported.min_maxbe = 3;
111 phy->supported.max_maxbe = 8;
112 phy->supported.min_frame_retries = -1;
113 phy->supported.max_frame_retries = 7;
114 phy->supported.max_csma_backoffs = 5;
115 phy->supported.lbt = NL802154_SUPPORTED_BOOL_FALSE;
116
65318680
AA
117 /* always supported */
118 phy->supported.iftypes = BIT(NL802154_IFTYPE_NODE);
119
a5e1ec53 120 return &local->hw;
1010f540 121}
5a504397 122EXPORT_SYMBOL(ieee802154_alloc_hw);
1010f540 123
5a504397 124void ieee802154_free_hw(struct ieee802154_hw *hw)
1010f540 125{
60741361 126 struct ieee802154_local *local = hw_to_local(hw);
1010f540 127
d98be45b 128 BUG_ON(!list_empty(&local->interfaces));
62610ad2 129
d98be45b 130 mutex_destroy(&local->iflist_mtx);
1e9f9545 131
a5e1ec53 132 wpan_phy_free(local->phy);
1010f540 133}
5a504397 134EXPORT_SYMBOL(ieee802154_free_hw);
1010f540 135
61f2dcba
AA
136static void ieee802154_setup_wpan_phy_pib(struct wpan_phy *wpan_phy)
137{
138 /* TODO warn on empty symbol_duration
139 * Should be done when all drivers sets this value.
140 */
141
142 wpan_phy->lifs_period = IEEE802154_LIFS_PERIOD *
143 wpan_phy->symbol_duration;
144 wpan_phy->sifs_period = IEEE802154_SIFS_PERIOD *
145 wpan_phy->symbol_duration;
146}
147
5a504397 148int ieee802154_register_hw(struct ieee802154_hw *hw)
1010f540 149{
60741361 150 struct ieee802154_local *local = hw_to_local(hw);
e4962a14 151 struct net_device *dev;
640985ec
AA
152 int rc = -ENOSYS;
153
f7730542 154 local->workqueue =
a5e1ec53 155 create_singlethread_workqueue(wpan_phy_name(local->phy));
f7730542 156 if (!local->workqueue) {
640985ec 157 rc = -ENOMEM;
1010f540 158 goto out;
640985ec 159 }
1010f540 160
61f2dcba
AA
161 hrtimer_init(&local->ifs_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
162 local->ifs_timer.function = ieee802154_xmit_ifs_timer;
163
a5e1ec53 164 wpan_phy_set_dev(local->phy, local->hw.parent);
1010f540 165
61f2dcba
AA
166 ieee802154_setup_wpan_phy_pib(local->phy);
167
fea3318d
AA
168 if (!(hw->flags & IEEE802154_HW_CSMA_PARAMS)) {
169 local->phy->supported.min_csma_backoffs = 4;
170 local->phy->supported.max_csma_backoffs = 4;
171 local->phy->supported.min_maxbe = 5;
172 local->phy->supported.max_maxbe = 5;
173 local->phy->supported.min_minbe = 3;
174 local->phy->supported.max_minbe = 3;
175 }
176
177 if (!(hw->flags & IEEE802154_HW_FRAME_RETRIES)) {
178 /* TODO should be 3, but our default value is -1 which means
179 * no ARET handling.
180 */
181 local->phy->supported.min_frame_retries = -1;
182 local->phy->supported.max_frame_retries = -1;
183 }
184
65318680
AA
185 if (hw->flags & IEEE802154_HW_PROMISCUOUS)
186 local->phy->supported.iftypes |= BIT(NL802154_IFTYPE_MONITOR);
187
a5e1ec53 188 rc = wpan_phy_register(local->phy);
1010f540 189 if (rc < 0)
190 goto out_wq;
191
e4962a14
AA
192 rtnl_lock();
193
5b4a1039
VB
194 dev = ieee802154_if_add(local, "wpan%d", NET_NAME_ENUM,
195 NL802154_IFTYPE_NODE,
0e57547e 196 cpu_to_le64(0x0000000000000000ULL));
e4962a14
AA
197 if (IS_ERR(dev)) {
198 rtnl_unlock();
199 rc = PTR_ERR(dev);
2b4d413c 200 goto out_phy;
e4962a14
AA
201 }
202
203 rtnl_unlock();
204
1010f540 205 return 0;
206
2b4d413c
AA
207out_phy:
208 wpan_phy_unregister(local->phy);
1010f540 209out_wq:
f7730542 210 destroy_workqueue(local->workqueue);
1010f540 211out:
212 return rc;
213}
5a504397 214EXPORT_SYMBOL(ieee802154_register_hw);
1010f540 215
5a504397 216void ieee802154_unregister_hw(struct ieee802154_hw *hw)
1010f540 217{
60741361 218 struct ieee802154_local *local = hw_to_local(hw);
1010f540 219
c5c47e67 220 tasklet_kill(&local->tasklet);
f7730542
AA
221 flush_workqueue(local->workqueue);
222 destroy_workqueue(local->workqueue);
1010f540 223
224 rtnl_lock();
225
592dfbfc 226 ieee802154_remove_interfaces(local);
62610ad2 227
1010f540 228 rtnl_unlock();
229
a5e1ec53 230 wpan_phy_unregister(local->phy);
1010f540 231}
5a504397 232EXPORT_SYMBOL(ieee802154_unregister_hw);
1010f540 233
be4fd8e5
AA
234static int __init ieee802154_init(void)
235{
236 return ieee802154_iface_init();
237}
238
239static void __exit ieee802154_exit(void)
240{
241 ieee802154_iface_exit();
242
243 rcu_barrier();
244}
245
246subsys_initcall(ieee802154_init);
247module_exit(ieee802154_exit);
248
912f67ae 249MODULE_DESCRIPTION("IEEE 802.15.4 subsystem");
1010f540 250MODULE_LICENSE("GPL v2");