alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2007-2012 Siemens AG |
| 3 | * |
| 4 | * Written by: |
| 5 | * Alexander Smirnov <alex.bluesman.smirnov@gmail.com> |
| 6 | * |
| 7 | * Based on the code from 'linux-zigbee.sourceforge.net' project. |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 |
| 11 | * as published by the Free Software Foundation. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License along |
| 19 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 20 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 21 | */ |
| 22 | |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/netdevice.h> |
| 26 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 27 | #include <net/netlink.h> |
| 28 | #include <linux/nl802154.h> |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 29 | #include <net/mac802154.h> |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 30 | #include <net/ieee802154_netdev.h> |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 31 | #include <net/route.h> |
| 32 | #include <net/wpan-phy.h> |
| 33 | |
| 34 | #include "mac802154.h" |
| 35 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 36 | int mac802154_slave_open(struct net_device *dev) |
| 37 | { |
| 38 | struct mac802154_sub_if_data *priv = netdev_priv(dev); |
Phoebe Buckheister | 336908f | 2014-03-31 21:37:45 +0200 | [diff] [blame] | 39 | struct mac802154_sub_if_data *subif; |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 40 | struct mac802154_priv *ipriv = priv->hw; |
| 41 | int res = 0; |
| 42 | |
Phoebe Buckheister | 336908f | 2014-03-31 21:37:45 +0200 | [diff] [blame] | 43 | ASSERT_RTNL(); |
| 44 | |
| 45 | if (priv->type == IEEE802154_DEV_WPAN) { |
| 46 | mutex_lock(&priv->hw->slaves_mtx); |
| 47 | list_for_each_entry(subif, &priv->hw->slaves, list) { |
| 48 | if (subif != priv && subif->type == priv->type && |
| 49 | subif->running) { |
| 50 | mutex_unlock(&priv->hw->slaves_mtx); |
| 51 | return -EBUSY; |
| 52 | } |
| 53 | } |
| 54 | mutex_unlock(&priv->hw->slaves_mtx); |
| 55 | } |
| 56 | |
| 57 | mutex_lock(&priv->hw->slaves_mtx); |
| 58 | priv->running = true; |
| 59 | mutex_unlock(&priv->hw->slaves_mtx); |
| 60 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 61 | if (ipriv->open_count++ == 0) { |
| 62 | res = ipriv->ops->start(&ipriv->hw); |
| 63 | WARN_ON(res); |
| 64 | if (res) |
| 65 | goto err; |
| 66 | } |
| 67 | |
| 68 | if (ipriv->ops->ieee_addr) { |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 69 | __le64 addr = ieee802154_devaddr_from_raw(dev->dev_addr); |
| 70 | |
| 71 | res = ipriv->ops->ieee_addr(&ipriv->hw, addr); |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 72 | WARN_ON(res); |
| 73 | if (res) |
| 74 | goto err; |
| 75 | mac802154_dev_set_ieee_addr(dev); |
| 76 | } |
| 77 | |
| 78 | netif_start_queue(dev); |
| 79 | return 0; |
| 80 | err: |
| 81 | priv->hw->open_count--; |
| 82 | |
| 83 | return res; |
| 84 | } |
| 85 | |
| 86 | int mac802154_slave_close(struct net_device *dev) |
| 87 | { |
| 88 | struct mac802154_sub_if_data *priv = netdev_priv(dev); |
| 89 | struct mac802154_priv *ipriv = priv->hw; |
| 90 | |
Phoebe Buckheister | 336908f | 2014-03-31 21:37:45 +0200 | [diff] [blame] | 91 | ASSERT_RTNL(); |
| 92 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 93 | netif_stop_queue(dev); |
| 94 | |
Phoebe Buckheister | 336908f | 2014-03-31 21:37:45 +0200 | [diff] [blame] | 95 | mutex_lock(&priv->hw->slaves_mtx); |
| 96 | priv->running = false; |
| 97 | mutex_unlock(&priv->hw->slaves_mtx); |
| 98 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 99 | if (!--ipriv->open_count) |
| 100 | ipriv->ops->stop(&ipriv->hw); |
| 101 | |
| 102 | return 0; |
| 103 | } |
| 104 | |
| 105 | static int |
| 106 | mac802154_netdev_register(struct wpan_phy *phy, struct net_device *dev) |
| 107 | { |
| 108 | struct mac802154_sub_if_data *priv; |
| 109 | struct mac802154_priv *ipriv; |
| 110 | int err; |
| 111 | |
| 112 | ipriv = wpan_phy_priv(phy); |
| 113 | |
| 114 | priv = netdev_priv(dev); |
| 115 | priv->dev = dev; |
| 116 | priv->hw = ipriv; |
| 117 | |
| 118 | dev->needed_headroom = ipriv->hw.extra_tx_headroom; |
| 119 | |
| 120 | SET_NETDEV_DEV(dev, &ipriv->phy->dev); |
| 121 | |
| 122 | mutex_lock(&ipriv->slaves_mtx); |
| 123 | if (!ipriv->running) { |
| 124 | mutex_unlock(&ipriv->slaves_mtx); |
| 125 | return -ENODEV; |
| 126 | } |
| 127 | mutex_unlock(&ipriv->slaves_mtx); |
| 128 | |
| 129 | err = register_netdev(dev); |
| 130 | if (err < 0) |
| 131 | return err; |
| 132 | |
| 133 | rtnl_lock(); |
| 134 | mutex_lock(&ipriv->slaves_mtx); |
| 135 | list_add_tail_rcu(&priv->list, &ipriv->slaves); |
| 136 | mutex_unlock(&ipriv->slaves_mtx); |
| 137 | rtnl_unlock(); |
| 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | static void |
| 143 | mac802154_del_iface(struct wpan_phy *phy, struct net_device *dev) |
| 144 | { |
| 145 | struct mac802154_sub_if_data *sdata; |
| 146 | ASSERT_RTNL(); |
| 147 | |
| 148 | sdata = netdev_priv(dev); |
| 149 | |
| 150 | BUG_ON(sdata->hw->phy != phy); |
| 151 | |
| 152 | mutex_lock(&sdata->hw->slaves_mtx); |
| 153 | list_del_rcu(&sdata->list); |
| 154 | mutex_unlock(&sdata->hw->slaves_mtx); |
| 155 | |
| 156 | synchronize_rcu(); |
| 157 | unregister_netdevice(sdata->dev); |
| 158 | } |
| 159 | |
| 160 | static struct net_device * |
| 161 | mac802154_add_iface(struct wpan_phy *phy, const char *name, int type) |
| 162 | { |
| 163 | struct net_device *dev; |
| 164 | int err = -ENOMEM; |
| 165 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 166 | switch (type) { |
alex.bluesman.smirnov@gmail.com | 0606069 | 2012-05-15 20:50:29 +0000 | [diff] [blame] | 167 | case IEEE802154_DEV_MONITOR: |
| 168 | dev = alloc_netdev(sizeof(struct mac802154_sub_if_data), |
| 169 | name, mac802154_monitor_setup); |
| 170 | break; |
alex.bluesman.smirnov@gmail.com | 32bad7e | 2012-06-25 23:24:48 +0000 | [diff] [blame] | 171 | case IEEE802154_DEV_WPAN: |
| 172 | dev = alloc_netdev(sizeof(struct mac802154_sub_if_data), |
| 173 | name, mac802154_wpan_setup); |
| 174 | break; |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 175 | default: |
| 176 | dev = NULL; |
| 177 | err = -EINVAL; |
| 178 | break; |
| 179 | } |
| 180 | if (!dev) |
| 181 | goto err; |
| 182 | |
| 183 | err = mac802154_netdev_register(phy, dev); |
| 184 | if (err) |
| 185 | goto err_free; |
| 186 | |
| 187 | dev_hold(dev); /* we return an incremented device refcount */ |
| 188 | return dev; |
| 189 | |
| 190 | err_free: |
| 191 | free_netdev(dev); |
| 192 | err: |
| 193 | return ERR_PTR(err); |
| 194 | } |
| 195 | |
Phoebe Buckheister | 9b2777d | 2014-02-17 11:34:08 +0100 | [diff] [blame] | 196 | static int mac802154_set_txpower(struct wpan_phy *phy, int db) |
| 197 | { |
| 198 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 199 | |
Phoebe Buckheister | 9b2777d | 2014-02-17 11:34:08 +0100 | [diff] [blame] | 200 | return priv->ops->set_txpower(&priv->hw, db); |
| 201 | } |
| 202 | |
Phoebe Buckheister | 84dda3c | 2014-02-17 11:34:10 +0100 | [diff] [blame] | 203 | static int mac802154_set_lbt(struct wpan_phy *phy, bool on) |
| 204 | { |
| 205 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 206 | |
Phoebe Buckheister | 84dda3c | 2014-02-17 11:34:10 +0100 | [diff] [blame] | 207 | return priv->ops->set_lbt(&priv->hw, on); |
| 208 | } |
| 209 | |
Phoebe Buckheister | ba08fea | 2014-02-17 11:34:11 +0100 | [diff] [blame] | 210 | static int mac802154_set_cca_mode(struct wpan_phy *phy, u8 mode) |
| 211 | { |
| 212 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 213 | |
Phoebe Buckheister | ba08fea | 2014-02-17 11:34:11 +0100 | [diff] [blame] | 214 | return priv->ops->set_cca_mode(&priv->hw, mode); |
| 215 | } |
| 216 | |
Phoebe Buckheister | 6ca0019 | 2014-02-17 11:34:12 +0100 | [diff] [blame] | 217 | static int mac802154_set_cca_ed_level(struct wpan_phy *phy, s32 level) |
| 218 | { |
| 219 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 220 | |
Phoebe Buckheister | 6ca0019 | 2014-02-17 11:34:12 +0100 | [diff] [blame] | 221 | return priv->ops->set_cca_ed_level(&priv->hw, level); |
| 222 | } |
| 223 | |
Phoebe Buckheister | 4244db1 | 2014-02-17 11:34:14 +0100 | [diff] [blame] | 224 | static int mac802154_set_csma_params(struct wpan_phy *phy, u8 min_be, |
| 225 | u8 max_be, u8 retries) |
| 226 | { |
| 227 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 228 | |
Phoebe Buckheister | 4244db1 | 2014-02-17 11:34:14 +0100 | [diff] [blame] | 229 | return priv->ops->set_csma_params(&priv->hw, min_be, max_be, retries); |
| 230 | } |
| 231 | |
| 232 | static int mac802154_set_frame_retries(struct wpan_phy *phy, s8 retries) |
| 233 | { |
| 234 | struct mac802154_priv *priv = wpan_phy_priv(phy); |
| 235 | |
Phoebe Buckheister | 4244db1 | 2014-02-17 11:34:14 +0100 | [diff] [blame] | 236 | return priv->ops->set_frame_retries(&priv->hw, retries); |
| 237 | } |
| 238 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 239 | struct ieee802154_dev * |
| 240 | ieee802154_alloc_device(size_t priv_data_len, struct ieee802154_ops *ops) |
| 241 | { |
| 242 | struct wpan_phy *phy; |
| 243 | struct mac802154_priv *priv; |
| 244 | size_t priv_size; |
| 245 | |
| 246 | if (!ops || !ops->xmit || !ops->ed || !ops->start || |
| 247 | !ops->stop || !ops->set_channel) { |
Chen Weilong | 83a1a7c | 2013-10-30 15:28:07 +0800 | [diff] [blame] | 248 | pr_err("undefined IEEE802.15.4 device operations\n"); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 249 | return NULL; |
| 250 | } |
| 251 | |
| 252 | /* Ensure 32-byte alignment of our private data and hw private data. |
| 253 | * We use the wpan_phy priv data for both our mac802154_priv and for |
| 254 | * the driver's private data |
| 255 | * |
| 256 | * in memory it'll be like this: |
| 257 | * |
| 258 | * +-----------------------+ |
| 259 | * | struct wpan_phy | |
| 260 | * +-----------------------+ |
| 261 | * | struct mac802154_priv | |
| 262 | * +-----------------------+ |
| 263 | * | driver's private data | |
| 264 | * +-----------------------+ |
| 265 | * |
| 266 | * Due to ieee802154 layer isn't aware of driver and MAC structures, |
| 267 | * so lets allign them here. |
| 268 | */ |
| 269 | |
| 270 | priv_size = ALIGN(sizeof(*priv), NETDEV_ALIGN) + priv_data_len; |
| 271 | |
| 272 | phy = wpan_phy_alloc(priv_size); |
| 273 | if (!phy) { |
Chen Weilong | 83a1a7c | 2013-10-30 15:28:07 +0800 | [diff] [blame] | 274 | pr_err("failure to allocate master IEEE802.15.4 device\n"); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 275 | return NULL; |
| 276 | } |
| 277 | |
| 278 | priv = wpan_phy_priv(phy); |
| 279 | priv->hw.phy = priv->phy = phy; |
| 280 | priv->hw.priv = (char *)priv + ALIGN(sizeof(*priv), NETDEV_ALIGN); |
| 281 | priv->ops = ops; |
| 282 | |
| 283 | INIT_LIST_HEAD(&priv->slaves); |
| 284 | mutex_init(&priv->slaves_mtx); |
| 285 | |
| 286 | return &priv->hw; |
| 287 | } |
| 288 | EXPORT_SYMBOL(ieee802154_alloc_device); |
| 289 | |
| 290 | void ieee802154_free_device(struct ieee802154_dev *hw) |
| 291 | { |
| 292 | struct mac802154_priv *priv = mac802154_to_priv(hw); |
| 293 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 294 | BUG_ON(!list_empty(&priv->slaves)); |
| 295 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 296 | mutex_destroy(&priv->slaves_mtx); |
Konstantin Khlebnikov | 1e9f954 | 2012-12-14 01:03:03 +0000 | [diff] [blame] | 297 | |
| 298 | wpan_phy_free(priv->phy); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 299 | } |
| 300 | EXPORT_SYMBOL(ieee802154_free_device); |
| 301 | |
| 302 | int ieee802154_register_device(struct ieee802154_dev *dev) |
| 303 | { |
| 304 | struct mac802154_priv *priv = mac802154_to_priv(dev); |
| 305 | int rc = -ENOMEM; |
| 306 | |
| 307 | priv->dev_workqueue = |
| 308 | create_singlethread_workqueue(wpan_phy_name(priv->phy)); |
| 309 | if (!priv->dev_workqueue) |
| 310 | goto out; |
| 311 | |
| 312 | wpan_phy_set_dev(priv->phy, priv->hw.parent); |
| 313 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 314 | priv->phy->add_iface = mac802154_add_iface; |
| 315 | priv->phy->del_iface = mac802154_del_iface; |
Phoebe Buckheister | e462ded | 2014-03-31 21:37:46 +0200 | [diff] [blame] | 316 | if (priv->ops->set_txpower) |
| 317 | priv->phy->set_txpower = mac802154_set_txpower; |
| 318 | if (priv->ops->set_lbt) |
| 319 | priv->phy->set_lbt = mac802154_set_lbt; |
| 320 | if (priv->ops->set_cca_mode) |
| 321 | priv->phy->set_cca_mode = mac802154_set_cca_mode; |
| 322 | if (priv->ops->set_cca_ed_level) |
| 323 | priv->phy->set_cca_ed_level = mac802154_set_cca_ed_level; |
| 324 | if (priv->ops->set_csma_params) |
| 325 | priv->phy->set_csma_params = mac802154_set_csma_params; |
| 326 | if (priv->ops->set_frame_retries) |
| 327 | priv->phy->set_frame_retries = mac802154_set_frame_retries; |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 328 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 329 | rc = wpan_phy_register(priv->phy); |
| 330 | if (rc < 0) |
| 331 | goto out_wq; |
| 332 | |
| 333 | rtnl_lock(); |
| 334 | |
| 335 | mutex_lock(&priv->slaves_mtx); |
| 336 | priv->running = MAC802154_DEVICE_RUN; |
| 337 | mutex_unlock(&priv->slaves_mtx); |
| 338 | |
| 339 | rtnl_unlock(); |
| 340 | |
| 341 | return 0; |
| 342 | |
| 343 | out_wq: |
| 344 | destroy_workqueue(priv->dev_workqueue); |
| 345 | out: |
| 346 | return rc; |
| 347 | } |
| 348 | EXPORT_SYMBOL(ieee802154_register_device); |
| 349 | |
| 350 | void ieee802154_unregister_device(struct ieee802154_dev *dev) |
| 351 | { |
| 352 | struct mac802154_priv *priv = mac802154_to_priv(dev); |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 353 | struct mac802154_sub_if_data *sdata, *next; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 354 | |
| 355 | flush_workqueue(priv->dev_workqueue); |
| 356 | destroy_workqueue(priv->dev_workqueue); |
| 357 | |
| 358 | rtnl_lock(); |
| 359 | |
| 360 | mutex_lock(&priv->slaves_mtx); |
| 361 | priv->running = MAC802154_DEVICE_STOPPED; |
| 362 | mutex_unlock(&priv->slaves_mtx); |
| 363 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 364 | list_for_each_entry_safe(sdata, next, &priv->slaves, list) { |
| 365 | mutex_lock(&sdata->hw->slaves_mtx); |
| 366 | list_del(&sdata->list); |
| 367 | mutex_unlock(&sdata->hw->slaves_mtx); |
| 368 | |
| 369 | unregister_netdevice(sdata->dev); |
| 370 | } |
| 371 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 372 | rtnl_unlock(); |
| 373 | |
| 374 | wpan_phy_unregister(priv->phy); |
| 375 | } |
| 376 | EXPORT_SYMBOL(ieee802154_unregister_device); |
| 377 | |
| 378 | MODULE_DESCRIPTION("IEEE 802.15.4 implementation"); |
| 379 | MODULE_LICENSE("GPL v2"); |