fakelb: add virtual phy reset defaults
[deliverable/linux.git] / drivers / net / ieee802154 / fakelb.c
CommitLineData
e1e49b64 1/*
2 * Loopback IEEE 802.15.4 interface
3 *
4 * Copyright 2007-2012 Siemens AG
5 *
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.
9 *
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.
14 *
e1e49b64 15 * Written by:
16 * Sergey Lapin <slapin@ossfans.org>
17 * Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
18 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
19 */
20
21#include <linux/module.h>
22#include <linux/timer.h>
23#include <linux/platform_device.h>
24#include <linux/netdevice.h>
12b5c38f 25#include <linux/device.h>
e1e49b64 26#include <linux/spinlock.h>
27#include <net/mac802154.h>
5ad60d36 28#include <net/cfg802154.h>
e1e49b64 29
7e57905b 30static int numlbs = 2;
e369dc8f 31
b82b99f1 32static LIST_HEAD(fakelb_phys);
e369dc8f
AA
33static DEFINE_SPINLOCK(fakelb_phys_lock);
34
35static LIST_HEAD(fakelb_ifup_phys);
36static DEFINE_RWLOCK(fakelb_ifup_phys_lock);
e1e49b64 37
db3f5d0d 38struct fakelb_phy {
5a504397 39 struct ieee802154_hw *hw;
e1e49b64 40
12da8d97
AA
41 u8 page;
42 u8 channel;
43
e1e49b64 44 struct list_head list;
e369dc8f 45 struct list_head list_ifup;
e1e49b64 46};
47
e1e49b64 48static int
5a504397 49fakelb_hw_ed(struct ieee802154_hw *hw, u8 *level)
e1e49b64 50{
e1e49b64 51 BUG_ON(!level);
52 *level = 0xbe;
53
54 return 0;
55}
56
57static int
e37d2ec8 58fakelb_hw_channel(struct ieee802154_hw *hw, u8 page, u8 channel)
e1e49b64 59{
12da8d97 60 struct fakelb_phy *phy = hw->priv;
e1e49b64 61
12da8d97
AA
62 write_lock_bh(&fakelb_ifup_phys_lock);
63 phy->page = page;
64 phy->channel = channel;
65 write_unlock_bh(&fakelb_ifup_phys_lock);
e1e49b64 66 return 0;
67}
68
69static void
db3f5d0d 70fakelb_hw_deliver(struct fakelb_phy *phy, struct sk_buff *skb)
e1e49b64 71{
72 struct sk_buff *newskb;
73
e369dc8f
AA
74 newskb = pskb_copy(skb, GFP_ATOMIC);
75 if (newskb)
76 ieee802154_rx_irqsafe(phy->hw, newskb, 0xcc);
e1e49b64 77}
78
79static int
5a504397 80fakelb_hw_xmit(struct ieee802154_hw *hw, struct sk_buff *skb)
e1e49b64 81{
db3f5d0d 82 struct fakelb_phy *current_phy = hw->priv;
9f8b97f8 83 struct fakelb_phy *phy;
e1e49b64 84
e369dc8f
AA
85 read_lock_bh(&fakelb_ifup_phys_lock);
86 list_for_each_entry(phy, &fakelb_ifup_phys, list_ifup) {
9f8b97f8
AA
87 if (current_phy == phy)
88 continue;
89
12da8d97
AA
90 if (current_phy->page == phy->page &&
91 current_phy->channel == phy->channel)
9f8b97f8 92 fakelb_hw_deliver(phy, skb);
e1e49b64 93 }
e369dc8f 94 read_unlock_bh(&fakelb_ifup_phys_lock);
e1e49b64 95
96 return 0;
97}
98
99static int
5a504397 100fakelb_hw_start(struct ieee802154_hw *hw) {
db3f5d0d 101 struct fakelb_phy *phy = hw->priv;
e1e49b64 102
e369dc8f
AA
103 write_lock_bh(&fakelb_ifup_phys_lock);
104 list_add(&phy->list_ifup, &fakelb_ifup_phys);
105 write_unlock_bh(&fakelb_ifup_phys_lock);
e1e49b64 106
e369dc8f 107 return 0;
e1e49b64 108}
109
110static void
5a504397 111fakelb_hw_stop(struct ieee802154_hw *hw) {
db3f5d0d 112 struct fakelb_phy *phy = hw->priv;
e1e49b64 113
e369dc8f
AA
114 write_lock_bh(&fakelb_ifup_phys_lock);
115 list_del(&phy->list_ifup);
116 write_unlock_bh(&fakelb_ifup_phys_lock);
e1e49b64 117}
118
16301861 119static const struct ieee802154_ops fakelb_ops = {
e1e49b64 120 .owner = THIS_MODULE,
ed0a5dce 121 .xmit_sync = fakelb_hw_xmit,
e1e49b64 122 .ed = fakelb_hw_ed,
123 .set_channel = fakelb_hw_channel,
124 .start = fakelb_hw_start,
125 .stop = fakelb_hw_stop,
126};
127
128/* Number of dummy devices to be set up by this module. */
129module_param(numlbs, int, 0);
130MODULE_PARM_DESC(numlbs, " number of pseudo devices");
131
b82b99f1 132static int fakelb_add_one(struct device *dev)
e1e49b64 133{
db3f5d0d 134 struct fakelb_phy *phy;
e1e49b64 135 int err;
5a504397 136 struct ieee802154_hw *hw;
e1e49b64 137
db3f5d0d 138 hw = ieee802154_alloc_hw(sizeof(*phy), &fakelb_ops);
5a504397 139 if (!hw)
e1e49b64 140 return -ENOMEM;
141
db3f5d0d
AA
142 phy = hw->priv;
143 phy->hw = hw;
e1e49b64 144
145 /* 868 MHz BPSK 802.15.4-2003 */
72f655e4 146 hw->phy->supported.channels[0] |= 1;
e1e49b64 147 /* 915 MHz BPSK 802.15.4-2003 */
72f655e4 148 hw->phy->supported.channels[0] |= 0x7fe;
e1e49b64 149 /* 2.4 GHz O-QPSK 802.15.4-2003 */
72f655e4 150 hw->phy->supported.channels[0] |= 0x7FFF800;
e1e49b64 151 /* 868 MHz ASK 802.15.4-2006 */
72f655e4 152 hw->phy->supported.channels[1] |= 1;
e1e49b64 153 /* 915 MHz ASK 802.15.4-2006 */
72f655e4 154 hw->phy->supported.channels[1] |= 0x7fe;
e1e49b64 155 /* 868 MHz O-QPSK 802.15.4-2006 */
72f655e4 156 hw->phy->supported.channels[2] |= 1;
e1e49b64 157 /* 915 MHz O-QPSK 802.15.4-2006 */
72f655e4 158 hw->phy->supported.channels[2] |= 0x7fe;
e1e49b64 159 /* 2.4 GHz CSS 802.15.4a-2007 */
72f655e4 160 hw->phy->supported.channels[3] |= 0x3fff;
e1e49b64 161 /* UWB Sub-gigahertz 802.15.4a-2007 */
72f655e4 162 hw->phy->supported.channels[4] |= 1;
e1e49b64 163 /* UWB Low band 802.15.4a-2007 */
72f655e4 164 hw->phy->supported.channels[4] |= 0x1e;
e1e49b64 165 /* UWB High band 802.15.4a-2007 */
72f655e4 166 hw->phy->supported.channels[4] |= 0xffe0;
e1e49b64 167 /* 750 MHz O-QPSK 802.15.4c-2009 */
72f655e4 168 hw->phy->supported.channels[5] |= 0xf;
e1e49b64 169 /* 750 MHz MPSK 802.15.4c-2009 */
72f655e4 170 hw->phy->supported.channels[5] |= 0xf0;
e1e49b64 171 /* 950 MHz BPSK 802.15.4d-2009 */
72f655e4 172 hw->phy->supported.channels[6] |= 0x3ff;
e1e49b64 173 /* 950 MHz GFSK 802.15.4d-2009 */
72f655e4 174 hw->phy->supported.channels[6] |= 0x3ffc00;
e1e49b64 175
e214a904
AA
176 ieee802154_random_extended_addr(&hw->phy->perm_extended_addr);
177 /* fake phy channel 13 as default */
178 hw->phy->current_channel = 13;
179 phy->channel = hw->phy->current_channel;
180
5a504397 181 hw->parent = dev;
e1e49b64 182
5a504397 183 err = ieee802154_register_hw(hw);
e1e49b64 184 if (err)
185 goto err_reg;
186
e369dc8f 187 spin_lock(&fakelb_phys_lock);
b82b99f1 188 list_add_tail(&phy->list, &fakelb_phys);
e369dc8f 189 spin_unlock(&fakelb_phys_lock);
e1e49b64 190
191 return 0;
192
193err_reg:
db3f5d0d 194 ieee802154_free_hw(phy->hw);
e1e49b64 195 return err;
196}
197
db3f5d0d 198static void fakelb_del(struct fakelb_phy *phy)
e1e49b64 199{
db3f5d0d 200 list_del(&phy->list);
e1e49b64 201
db3f5d0d
AA
202 ieee802154_unregister_hw(phy->hw);
203 ieee802154_free_hw(phy->hw);
e1e49b64 204}
205
bb1f4606 206static int fakelb_probe(struct platform_device *pdev)
e1e49b64 207{
db3f5d0d 208 struct fakelb_phy *phy, *tmp;
e1e49b64 209 int err = -ENOMEM;
210 int i;
211
e1e49b64 212 for (i = 0; i < numlbs; i++) {
b82b99f1 213 err = fakelb_add_one(&pdev->dev);
e1e49b64 214 if (err < 0)
215 goto err_slave;
216 }
217
e1e49b64 218 dev_info(&pdev->dev, "added ieee802154 hardware\n");
219 return 0;
220
221err_slave:
e369dc8f 222 spin_lock(&fakelb_phys_lock);
b82b99f1 223 list_for_each_entry_safe(phy, tmp, &fakelb_phys, list)
db3f5d0d 224 fakelb_del(phy);
e369dc8f 225 spin_unlock(&fakelb_phys_lock);
e1e49b64 226 return err;
227}
228
bb1f4606 229static int fakelb_remove(struct platform_device *pdev)
e1e49b64 230{
db3f5d0d 231 struct fakelb_phy *phy, *temp;
e1e49b64 232
e369dc8f 233 spin_lock(&fakelb_phys_lock);
b82b99f1 234 list_for_each_entry_safe(phy, temp, &fakelb_phys, list)
db3f5d0d 235 fakelb_del(phy);
e369dc8f 236 spin_unlock(&fakelb_phys_lock);
e1e49b64 237 return 0;
238}
239
240static struct platform_device *ieee802154fake_dev;
241
242static struct platform_driver ieee802154fake_driver = {
243 .probe = fakelb_probe,
bb1f4606 244 .remove = fakelb_remove,
e1e49b64 245 .driver = {
246 .name = "ieee802154fakelb",
e1e49b64 247 },
248};
249
250static __init int fakelb_init_module(void)
251{
252 ieee802154fake_dev = platform_device_register_simple(
253 "ieee802154fakelb", -1, NULL, 0);
254 return platform_driver_register(&ieee802154fake_driver);
255}
256
257static __exit void fake_remove_module(void)
258{
259 platform_driver_unregister(&ieee802154fake_driver);
260 platform_device_unregister(ieee802154fake_dev);
261}
262
263module_init(fakelb_init_module);
264module_exit(fake_remove_module);
265MODULE_LICENSE("GPL");
This page took 0.22359 seconds and 5 git commands to generate.