blob: 06ea0f8bfd5c41161d2422575f020aedbd3d1c87 [file] [log] [blame]
Thomas Gleixner1802d0b2019-05-27 08:55:21 +02001// SPDX-License-Identifier: GPL-2.0-only
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00002/*
3 * Copyright (C) 2007-2012 Siemens AG
4 *
5 * Written by:
6 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +00007 */
8
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/netdevice.h>
12
alex.bluesman.smirnov@gmail.com62610ad2012-05-15 20:50:28 +000013#include <net/netlink.h>
Alexander Aring944742a2014-11-17 08:20:49 +010014#include <net/nl802154.h>
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000015#include <net/mac802154.h>
Phoebe Buckheisterb70ab2e2014-03-14 21:23:59 +010016#include <net/ieee802154_netdev.h>
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000017#include <net/route.h>
Alexander Aring5ad60d32014-10-25 09:41:02 +020018#include <net/cfg802154.h>
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000019
Alexander Aring0f1556b2014-10-25 09:41:00 +020020#include "ieee802154_i.h"
Alexander Aring1201cd22014-11-02 04:18:36 +010021#include "cfg.h"
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000022
Alexander Aringc5c47e62014-10-27 17:13:30 +010023static void ieee802154_tasklet_handler(unsigned long data)
24{
25 struct ieee802154_local *local = (struct ieee802154_local *)data;
26 struct sk_buff *skb;
27
28 while ((skb = skb_dequeue(&local->skb_queue))) {
29 switch (skb->pkt_type) {
30 case IEEE802154_RX_MSG:
31 /* Clear skb->pkt_type in order to not confuse kernel
32 * netstack.
33 */
34 skb->pkt_type = 0;
Varka Bhadramd10270c2015-07-07 10:50:43 +053035 ieee802154_rx(local, skb);
Alexander Aringc5c47e62014-10-27 17:13:30 +010036 break;
37 default:
38 WARN(1, "mac802154: Packet is of unknown type %d\n",
39 skb->pkt_type);
40 kfree_skb(skb);
41 break;
42 }
43 }
44}
45
Alexander Aring5a504392014-10-25 17:16:34 +020046struct ieee802154_hw *
Alexander Aring16301862014-10-28 18:21:18 +010047ieee802154_alloc_hw(size_t priv_data_len, const struct ieee802154_ops *ops)
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000048{
49 struct wpan_phy *phy;
Alexander Aringa5e1ec52014-10-25 17:16:35 +020050 struct ieee802154_local *local;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000051 size_t priv_size;
52
Varka Bhadram8f451822015-06-23 11:41:03 +053053 if (WARN_ON(!ops || !(ops->xmit_async || ops->xmit_sync) || !ops->ed ||
54 !ops->start || !ops->stop || !ops->set_channel))
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000055 return NULL;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000056
57 /* Ensure 32-byte alignment of our private data and hw private data.
Alexander Aringa5e1ec52014-10-25 17:16:35 +020058 * We use the wpan_phy priv data for both our ieee802154_local and for
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000059 * the driver's private data
60 *
61 * in memory it'll be like this:
62 *
Alexander Aringa5e1ec52014-10-25 17:16:35 +020063 * +-------------------------+
64 * | struct wpan_phy |
65 * +-------------------------+
66 * | struct ieee802154_local |
67 * +-------------------------+
68 * | driver's private data |
69 * +-------------------------+
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000070 *
71 * Due to ieee802154 layer isn't aware of driver and MAC structures,
Alexander Aring139f14a2014-10-25 05:25:08 +020072 * so lets align them here.
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000073 */
74
Alexander Aringa5e1ec52014-10-25 17:16:35 +020075 priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000076
Alexander Aringf6013792014-11-09 08:36:47 +010077 phy = wpan_phy_new(&mac802154_config_ops, priv_size);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000078 if (!phy) {
Chen Weilong83a1a7c2013-10-30 15:28:07 +080079 pr_err("failure to allocate master IEEE802.15.4 device\n");
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000080 return NULL;
81 }
82
Alexander Aring6322d502014-11-12 03:36:51 +010083 phy->privid = mac802154_wpan_phy_privid;
84
Alexander Aringa5e1ec52014-10-25 17:16:35 +020085 local = wpan_phy_priv(phy);
86 local->phy = phy;
87 local->hw.phy = local->phy;
88 local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN);
89 local->ops = ops;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000090
Alexander Aringd98be452014-10-25 17:16:38 +020091 INIT_LIST_HEAD(&local->interfaces);
92 mutex_init(&local->iflist_mtx);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +000093
Alexander Aringc5c47e62014-10-27 17:13:30 +010094 tasklet_init(&local->tasklet,
95 ieee802154_tasklet_handler,
96 (unsigned long)local);
97
98 skb_queue_head_init(&local->skb_queue);
99
Lennert Buytenhekc22ff7b2015-07-21 17:44:47 +0300100 INIT_WORK(&local->tx_work, ieee802154_xmit_worker);
101
Alexander Aringfea33182015-05-17 21:44:43 +0200102 /* init supported flags with 802.15.4 default ranges */
103 phy->supported.max_minbe = 8;
104 phy->supported.min_maxbe = 3;
105 phy->supported.max_maxbe = 8;
Alexander Aring89c7d782015-08-10 21:15:56 +0200106 phy->supported.min_frame_retries = 0;
Alexander Aringfea33182015-05-17 21:44:43 +0200107 phy->supported.max_frame_retries = 7;
108 phy->supported.max_csma_backoffs = 5;
109 phy->supported.lbt = NL802154_SUPPORTED_BOOL_FALSE;
110
Alexander Aring65318682015-05-17 21:44:47 +0200111 /* always supported */
112 phy->supported.iftypes = BIT(NL802154_IFTYPE_NODE);
113
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200114 return &local->hw;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000115}
Alexander Aring5a504392014-10-25 17:16:34 +0200116EXPORT_SYMBOL(ieee802154_alloc_hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000117
Alexander Aring5a504392014-10-25 17:16:34 +0200118void ieee802154_free_hw(struct ieee802154_hw *hw)
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000119{
Alexander Aring60741362014-10-25 17:16:39 +0200120 struct ieee802154_local *local = hw_to_local(hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000121
Alexander Aringd98be452014-10-25 17:16:38 +0200122 BUG_ON(!list_empty(&local->interfaces));
alex.bluesman.smirnov@gmail.com62610ad2012-05-15 20:50:28 +0000123
Alexander Aringd98be452014-10-25 17:16:38 +0200124 mutex_destroy(&local->iflist_mtx);
Konstantin Khlebnikov1e9f9542012-12-14 01:03:03 +0000125
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200126 wpan_phy_free(local->phy);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000127}
Alexander Aring5a504392014-10-25 17:16:34 +0200128EXPORT_SYMBOL(ieee802154_free_hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000129
Alexander Aring61f2dcb2014-11-12 19:51:56 +0100130static void ieee802154_setup_wpan_phy_pib(struct wpan_phy *wpan_phy)
131{
132 /* TODO warn on empty symbol_duration
133 * Should be done when all drivers sets this value.
134 */
135
136 wpan_phy->lifs_period = IEEE802154_LIFS_PERIOD *
137 wpan_phy->symbol_duration;
138 wpan_phy->sifs_period = IEEE802154_SIFS_PERIOD *
139 wpan_phy->symbol_duration;
140}
141
Alexander Aring5a504392014-10-25 17:16:34 +0200142int ieee802154_register_hw(struct ieee802154_hw *hw)
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000143{
Alexander Aring60741362014-10-25 17:16:39 +0200144 struct ieee802154_local *local = hw_to_local(hw);
Alexander Aringe4962a12014-11-05 20:51:19 +0100145 struct net_device *dev;
Alexander Aring640985e2014-07-03 00:20:43 +0200146 int rc = -ENOSYS;
147
Alexander Aringf7730542014-10-25 17:16:41 +0200148 local->workqueue =
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200149 create_singlethread_workqueue(wpan_phy_name(local->phy));
Alexander Aringf7730542014-10-25 17:16:41 +0200150 if (!local->workqueue) {
Alexander Aring640985e2014-07-03 00:20:43 +0200151 rc = -ENOMEM;
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000152 goto out;
Alexander Aring640985e2014-07-03 00:20:43 +0200153 }
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000154
Alexander Aring61f2dcb2014-11-12 19:51:56 +0100155 hrtimer_init(&local->ifs_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
156 local->ifs_timer.function = ieee802154_xmit_ifs_timer;
157
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200158 wpan_phy_set_dev(local->phy, local->hw.parent);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000159
Alexander Aring61f2dcb2014-11-12 19:51:56 +0100160 ieee802154_setup_wpan_phy_pib(local->phy);
161
Alexander Aringfea33182015-05-17 21:44:43 +0200162 if (!(hw->flags & IEEE802154_HW_CSMA_PARAMS)) {
163 local->phy->supported.min_csma_backoffs = 4;
164 local->phy->supported.max_csma_backoffs = 4;
165 local->phy->supported.min_maxbe = 5;
166 local->phy->supported.max_maxbe = 5;
167 local->phy->supported.min_minbe = 3;
168 local->phy->supported.max_minbe = 3;
169 }
170
171 if (!(hw->flags & IEEE802154_HW_FRAME_RETRIES)) {
Alexander Aring89c7d782015-08-10 21:15:56 +0200172 local->phy->supported.min_frame_retries = 3;
173 local->phy->supported.max_frame_retries = 3;
Alexander Aringfea33182015-05-17 21:44:43 +0200174 }
175
Alexander Aring65318682015-05-17 21:44:47 +0200176 if (hw->flags & IEEE802154_HW_PROMISCUOUS)
177 local->phy->supported.iftypes |= BIT(NL802154_IFTYPE_MONITOR);
178
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200179 rc = wpan_phy_register(local->phy);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000180 if (rc < 0)
181 goto out_wq;
182
Alexander Aringe4962a12014-11-05 20:51:19 +0100183 rtnl_lock();
184
Varka Bhadram5b4a10392015-04-30 17:44:57 +0200185 dev = ieee802154_if_add(local, "wpan%d", NET_NAME_ENUM,
186 NL802154_IFTYPE_NODE,
Alexander Aring0e575472014-11-17 08:20:52 +0100187 cpu_to_le64(0x0000000000000000ULL));
Alexander Aringe4962a12014-11-05 20:51:19 +0100188 if (IS_ERR(dev)) {
189 rtnl_unlock();
190 rc = PTR_ERR(dev);
Alexander Aring2b4d4132015-04-30 17:44:53 +0200191 goto out_phy;
Alexander Aringe4962a12014-11-05 20:51:19 +0100192 }
193
194 rtnl_unlock();
195
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000196 return 0;
197
Alexander Aring2b4d4132015-04-30 17:44:53 +0200198out_phy:
199 wpan_phy_unregister(local->phy);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000200out_wq:
Alexander Aringf7730542014-10-25 17:16:41 +0200201 destroy_workqueue(local->workqueue);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000202out:
203 return rc;
204}
Alexander Aring5a504392014-10-25 17:16:34 +0200205EXPORT_SYMBOL(ieee802154_register_hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000206
Alexander Aring5a504392014-10-25 17:16:34 +0200207void ieee802154_unregister_hw(struct ieee802154_hw *hw)
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000208{
Alexander Aring60741362014-10-25 17:16:39 +0200209 struct ieee802154_local *local = hw_to_local(hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000210
Alexander Aringc5c47e62014-10-27 17:13:30 +0100211 tasklet_kill(&local->tasklet);
Alexander Aringf7730542014-10-25 17:16:41 +0200212 flush_workqueue(local->workqueue);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000213
214 rtnl_lock();
215
Alexander Aring592dfbfc2014-11-12 03:36:48 +0100216 ieee802154_remove_interfaces(local);
alex.bluesman.smirnov@gmail.com62610ad2012-05-15 20:50:28 +0000217
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000218 rtnl_unlock();
219
Koen Zandbergaef00c12016-02-10 11:49:38 +0100220 destroy_workqueue(local->workqueue);
Alexander Aringa5e1ec52014-10-25 17:16:35 +0200221 wpan_phy_unregister(local->phy);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000222}
Alexander Aring5a504392014-10-25 17:16:34 +0200223EXPORT_SYMBOL(ieee802154_unregister_hw);
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000224
Alexander Aringbe4fd8e2014-11-12 03:36:53 +0100225static int __init ieee802154_init(void)
226{
227 return ieee802154_iface_init();
228}
229
230static void __exit ieee802154_exit(void)
231{
232 ieee802154_iface_exit();
233
234 rcu_barrier();
235}
236
237subsys_initcall(ieee802154_init);
238module_exit(ieee802154_exit);
239
Alexander Aring912f67a2014-11-12 03:36:52 +0100240MODULE_DESCRIPTION("IEEE 802.15.4 subsystem");
alex.bluesman.smirnov@gmail.com1010f542012-05-15 20:50:20 +0000241MODULE_LICENSE("GPL v2");