2 * Copyright (C) 2007-2012 Siemens AG
5 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
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.
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.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/netdevice.h>
21 #include <net/netlink.h>
22 #include <net/nl802154.h>
23 #include <net/mac802154.h>
24 #include <net/ieee802154_netdev.h>
25 #include <net/route.h>
26 #include <net/cfg802154.h>
28 #include "ieee802154_i.h"
31 static void ieee802154_tasklet_handler(unsigned long data
)
33 struct ieee802154_local
*local
= (struct ieee802154_local
*)data
;
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
43 ieee802154_rx(&local
->hw
, skb
);
46 WARN(1, "mac802154: Packet is of unknown type %d\n",
54 struct ieee802154_hw
*
55 ieee802154_alloc_hw(size_t priv_data_len
, const struct ieee802154_ops
*ops
)
58 struct ieee802154_local
*local
;
61 if (!ops
|| !(ops
->xmit_async
|| ops
->xmit_sync
) || !ops
->ed
||
62 !ops
->start
|| !ops
->stop
|| !ops
->set_channel
) {
63 pr_err("undefined IEEE802.15.4 device operations\n");
67 /* Ensure 32-byte alignment of our private data and hw private data.
68 * We use the wpan_phy priv data for both our ieee802154_local and for
69 * the driver's private data
71 * in memory it'll be like this:
73 * +-------------------------+
75 * +-------------------------+
76 * | struct ieee802154_local |
77 * +-------------------------+
78 * | driver's private data |
79 * +-------------------------+
81 * Due to ieee802154 layer isn't aware of driver and MAC structures,
82 * so lets align them here.
85 priv_size
= ALIGN(sizeof(*local
), NETDEV_ALIGN
) + priv_data_len
;
87 phy
= wpan_phy_new(&mac802154_config_ops
, priv_size
);
89 pr_err("failure to allocate master IEEE802.15.4 device\n");
93 phy
->privid
= mac802154_wpan_phy_privid
;
95 local
= wpan_phy_priv(phy
);
97 local
->hw
.phy
= local
->phy
;
98 local
->hw
.priv
= (char *)local
+ ALIGN(sizeof(*local
), NETDEV_ALIGN
);
101 INIT_LIST_HEAD(&local
->interfaces
);
102 mutex_init(&local
->iflist_mtx
);
104 tasklet_init(&local
->tasklet
,
105 ieee802154_tasklet_handler
,
106 (unsigned long)local
);
108 skb_queue_head_init(&local
->skb_queue
);
110 /* init supported flags with 802.15.4 default ranges */
111 phy
->supported
.max_minbe
= 8;
112 phy
->supported
.min_maxbe
= 3;
113 phy
->supported
.max_maxbe
= 8;
114 phy
->supported
.min_frame_retries
= -1;
115 phy
->supported
.max_frame_retries
= 7;
116 phy
->supported
.max_csma_backoffs
= 5;
117 phy
->supported
.lbt
= NL802154_SUPPORTED_BOOL_FALSE
;
119 /* always supported */
120 phy
->supported
.iftypes
= BIT(NL802154_IFTYPE_NODE
);
124 EXPORT_SYMBOL(ieee802154_alloc_hw
);
126 void ieee802154_free_hw(struct ieee802154_hw
*hw
)
128 struct ieee802154_local
*local
= hw_to_local(hw
);
130 BUG_ON(!list_empty(&local
->interfaces
));
132 mutex_destroy(&local
->iflist_mtx
);
134 wpan_phy_free(local
->phy
);
136 EXPORT_SYMBOL(ieee802154_free_hw
);
138 static void ieee802154_setup_wpan_phy_pib(struct wpan_phy
*wpan_phy
)
140 /* TODO warn on empty symbol_duration
141 * Should be done when all drivers sets this value.
144 wpan_phy
->lifs_period
= IEEE802154_LIFS_PERIOD
*
145 wpan_phy
->symbol_duration
;
146 wpan_phy
->sifs_period
= IEEE802154_SIFS_PERIOD
*
147 wpan_phy
->symbol_duration
;
150 int ieee802154_register_hw(struct ieee802154_hw
*hw
)
152 struct ieee802154_local
*local
= hw_to_local(hw
);
153 struct net_device
*dev
;
157 create_singlethread_workqueue(wpan_phy_name(local
->phy
));
158 if (!local
->workqueue
) {
163 hrtimer_init(&local
->ifs_timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
164 local
->ifs_timer
.function
= ieee802154_xmit_ifs_timer
;
166 wpan_phy_set_dev(local
->phy
, local
->hw
.parent
);
168 ieee802154_setup_wpan_phy_pib(local
->phy
);
170 if (!(hw
->flags
& IEEE802154_HW_CSMA_PARAMS
)) {
171 local
->phy
->supported
.min_csma_backoffs
= 4;
172 local
->phy
->supported
.max_csma_backoffs
= 4;
173 local
->phy
->supported
.min_maxbe
= 5;
174 local
->phy
->supported
.max_maxbe
= 5;
175 local
->phy
->supported
.min_minbe
= 3;
176 local
->phy
->supported
.max_minbe
= 3;
179 if (!(hw
->flags
& IEEE802154_HW_FRAME_RETRIES
)) {
180 /* TODO should be 3, but our default value is -1 which means
183 local
->phy
->supported
.min_frame_retries
= -1;
184 local
->phy
->supported
.max_frame_retries
= -1;
187 if (hw
->flags
& IEEE802154_HW_PROMISCUOUS
)
188 local
->phy
->supported
.iftypes
|= BIT(NL802154_IFTYPE_MONITOR
);
190 rc
= wpan_phy_register(local
->phy
);
196 dev
= ieee802154_if_add(local
, "wpan%d", NET_NAME_ENUM
,
197 NL802154_IFTYPE_NODE
,
198 cpu_to_le64(0x0000000000000000ULL
));
210 wpan_phy_unregister(local
->phy
);
212 destroy_workqueue(local
->workqueue
);
216 EXPORT_SYMBOL(ieee802154_register_hw
);
218 void ieee802154_unregister_hw(struct ieee802154_hw
*hw
)
220 struct ieee802154_local
*local
= hw_to_local(hw
);
222 tasklet_kill(&local
->tasklet
);
223 flush_workqueue(local
->workqueue
);
224 destroy_workqueue(local
->workqueue
);
228 ieee802154_remove_interfaces(local
);
232 wpan_phy_unregister(local
->phy
);
234 EXPORT_SYMBOL(ieee802154_unregister_hw
);
236 static int __init
ieee802154_init(void)
238 return ieee802154_iface_init();
241 static void __exit
ieee802154_exit(void)
243 ieee802154_iface_exit();
248 subsys_initcall(ieee802154_init
);
249 module_exit(ieee802154_exit
);
251 MODULE_DESCRIPTION("IEEE 802.15.4 subsystem");
252 MODULE_LICENSE("GPL v2");