2 * Loopback IEEE 802.15.4 interface
4 * Copyright 2007-2012 Siemens AG
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 * Sergey Lapin <slapin@ossfans.org>
21 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
22 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
25 #include <linux/module.h>
26 #include <linux/timer.h>
27 #include <linux/platform_device.h>
28 #include <linux/netdevice.h>
29 #include <linux/spinlock.h>
30 #include <net/mac802154.h>
31 #include <net/wpan-phy.h>
33 static int numlbs
= 1;
35 struct fakelb_dev_priv
{
36 struct ieee802154_dev
*dev
;
38 struct list_head list
;
39 struct fakelb_priv
*fake
;
46 struct list_head list
;
51 fakelb_hw_ed(struct ieee802154_dev
*dev
, u8
*level
)
61 fakelb_hw_channel(struct ieee802154_dev
*dev
, int page
, int channel
)
63 pr_debug("set channel to %d\n", channel
);
66 dev
->phy
->current_page
= page
;
67 dev
->phy
->current_channel
= channel
;
73 fakelb_hw_deliver(struct fakelb_dev_priv
*priv
, struct sk_buff
*skb
)
75 struct sk_buff
*newskb
;
77 spin_lock(&priv
->lock
);
79 newskb
= pskb_copy(skb
, GFP_ATOMIC
);
80 ieee802154_rx_irqsafe(priv
->dev
, newskb
, 0xcc);
82 spin_unlock(&priv
->lock
);
86 fakelb_hw_xmit(struct ieee802154_dev
*dev
, struct sk_buff
*skb
)
88 struct fakelb_dev_priv
*priv
= dev
->priv
;
89 struct fakelb_priv
*fake
= priv
->fake
;
93 read_lock_bh(&fake
->lock
);
94 if (priv
->list
.next
== priv
->list
.prev
) {
95 /* we are the only one device */
96 fakelb_hw_deliver(priv
, skb
);
98 struct fakelb_dev_priv
*dp
;
99 list_for_each_entry(dp
, &priv
->fake
->list
, list
) {
101 (dp
->dev
->phy
->current_channel
==
102 priv
->dev
->phy
->current_channel
))
103 fakelb_hw_deliver(dp
, skb
);
106 read_unlock_bh(&fake
->lock
);
112 fakelb_hw_start(struct ieee802154_dev
*dev
) {
113 struct fakelb_dev_priv
*priv
= dev
->priv
;
116 spin_lock(&priv
->lock
);
121 spin_unlock(&priv
->lock
);
127 fakelb_hw_stop(struct ieee802154_dev
*dev
) {
128 struct fakelb_dev_priv
*priv
= dev
->priv
;
130 spin_lock(&priv
->lock
);
132 spin_unlock(&priv
->lock
);
135 static struct ieee802154_ops fakelb_ops
= {
136 .owner
= THIS_MODULE
,
137 .xmit
= fakelb_hw_xmit
,
139 .set_channel
= fakelb_hw_channel
,
140 .start
= fakelb_hw_start
,
141 .stop
= fakelb_hw_stop
,
144 /* Number of dummy devices to be set up by this module. */
145 module_param(numlbs
, int, 0);
146 MODULE_PARM_DESC(numlbs
, " number of pseudo devices");
148 static int fakelb_add_one(struct device
*dev
, struct fakelb_priv
*fake
)
150 struct fakelb_dev_priv
*priv
;
152 struct ieee802154_dev
*ieee
;
154 ieee
= ieee802154_alloc_device(sizeof(*priv
), &fakelb_ops
);
161 /* 868 MHz BPSK 802.15.4-2003 */
162 ieee
->phy
->channels_supported
[0] |= 1;
163 /* 915 MHz BPSK 802.15.4-2003 */
164 ieee
->phy
->channels_supported
[0] |= 0x7fe;
165 /* 2.4 GHz O-QPSK 802.15.4-2003 */
166 ieee
->phy
->channels_supported
[0] |= 0x7FFF800;
167 /* 868 MHz ASK 802.15.4-2006 */
168 ieee
->phy
->channels_supported
[1] |= 1;
169 /* 915 MHz ASK 802.15.4-2006 */
170 ieee
->phy
->channels_supported
[1] |= 0x7fe;
171 /* 868 MHz O-QPSK 802.15.4-2006 */
172 ieee
->phy
->channels_supported
[2] |= 1;
173 /* 915 MHz O-QPSK 802.15.4-2006 */
174 ieee
->phy
->channels_supported
[2] |= 0x7fe;
175 /* 2.4 GHz CSS 802.15.4a-2007 */
176 ieee
->phy
->channels_supported
[3] |= 0x3fff;
177 /* UWB Sub-gigahertz 802.15.4a-2007 */
178 ieee
->phy
->channels_supported
[4] |= 1;
179 /* UWB Low band 802.15.4a-2007 */
180 ieee
->phy
->channels_supported
[4] |= 0x1e;
181 /* UWB High band 802.15.4a-2007 */
182 ieee
->phy
->channels_supported
[4] |= 0xffe0;
183 /* 750 MHz O-QPSK 802.15.4c-2009 */
184 ieee
->phy
->channels_supported
[5] |= 0xf;
185 /* 750 MHz MPSK 802.15.4c-2009 */
186 ieee
->phy
->channels_supported
[5] |= 0xf0;
187 /* 950 MHz BPSK 802.15.4d-2009 */
188 ieee
->phy
->channels_supported
[6] |= 0x3ff;
189 /* 950 MHz GFSK 802.15.4d-2009 */
190 ieee
->phy
->channels_supported
[6] |= 0x3ffc00;
192 INIT_LIST_HEAD(&priv
->list
);
195 spin_lock_init(&priv
->lock
);
199 err
= ieee802154_register_device(ieee
);
203 write_lock_bh(&fake
->lock
);
204 list_add_tail(&priv
->list
, &fake
->list
);
205 write_unlock_bh(&fake
->lock
);
210 ieee802154_free_device(priv
->dev
);
214 static void fakelb_del(struct fakelb_dev_priv
*priv
)
216 write_lock_bh(&priv
->fake
->lock
);
217 list_del(&priv
->list
);
218 write_unlock_bh(&priv
->fake
->lock
);
220 ieee802154_unregister_device(priv
->dev
);
221 ieee802154_free_device(priv
->dev
);
224 static int fakelb_probe(struct platform_device
*pdev
)
226 struct fakelb_priv
*priv
;
227 struct fakelb_dev_priv
*dp
;
231 priv
= kzalloc(sizeof(struct fakelb_priv
), GFP_KERNEL
);
235 INIT_LIST_HEAD(&priv
->list
);
236 rwlock_init(&priv
->lock
);
238 for (i
= 0; i
< numlbs
; i
++) {
239 err
= fakelb_add_one(&pdev
->dev
, priv
);
244 platform_set_drvdata(pdev
, priv
);
245 dev_info(&pdev
->dev
, "added ieee802154 hardware\n");
249 list_for_each_entry(dp
, &priv
->list
, list
)
256 static int fakelb_remove(struct platform_device
*pdev
)
258 struct fakelb_priv
*priv
= platform_get_drvdata(pdev
);
259 struct fakelb_dev_priv
*dp
, *temp
;
261 list_for_each_entry_safe(dp
, temp
, &priv
->list
, list
)
268 static struct platform_device
*ieee802154fake_dev
;
270 static struct platform_driver ieee802154fake_driver
= {
271 .probe
= fakelb_probe
,
272 .remove
= fakelb_remove
,
274 .name
= "ieee802154fakelb",
275 .owner
= THIS_MODULE
,
279 static __init
int fakelb_init_module(void)
281 ieee802154fake_dev
= platform_device_register_simple(
282 "ieee802154fakelb", -1, NULL
, 0);
283 return platform_driver_register(&ieee802154fake_driver
);
286 static __exit
void fake_remove_module(void)
288 platform_driver_unregister(&ieee802154fake_driver
);
289 platform_device_unregister(ieee802154fake_dev
);
292 module_init(fakelb_init_module
);
293 module_exit(fake_remove_module
);
294 MODULE_LICENSE("GPL");