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 | * |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 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. |
| 10 | * |
| 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. |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #include <linux/kernel.h> |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/netdevice.h> |
| 20 | |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 21 | #include <net/netlink.h> |
Alexander Aring | 944742a | 2014-11-17 08:20:49 +0100 | [diff] [blame] | 22 | #include <net/nl802154.h> |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 23 | #include <net/mac802154.h> |
Phoebe Buckheister | b70ab2e | 2014-03-14 21:23:59 +0100 | [diff] [blame] | 24 | #include <net/ieee802154_netdev.h> |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 25 | #include <net/route.h> |
Alexander Aring | 5ad60d3 | 2014-10-25 09:41:02 +0200 | [diff] [blame] | 26 | #include <net/cfg802154.h> |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 27 | |
Alexander Aring | 0f1556b | 2014-10-25 09:41:00 +0200 | [diff] [blame] | 28 | #include "ieee802154_i.h" |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 29 | #include "cfg.h" |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 30 | |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 31 | static void ieee802154_tasklet_handler(unsigned long data) |
| 32 | { |
| 33 | struct ieee802154_local *local = (struct ieee802154_local *)data; |
| 34 | struct sk_buff *skb; |
| 35 | |
| 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 |
| 40 | * netstack. |
| 41 | */ |
| 42 | skb->pkt_type = 0; |
Varka Bhadram | d10270c | 2015-07-07 10:50:43 +0530 | [diff] [blame] | 43 | ieee802154_rx(local, skb); |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 44 | break; |
| 45 | default: |
| 46 | WARN(1, "mac802154: Packet is of unknown type %d\n", |
| 47 | skb->pkt_type); |
| 48 | kfree_skb(skb); |
| 49 | break; |
| 50 | } |
| 51 | } |
| 52 | } |
| 53 | |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 54 | struct ieee802154_hw * |
Alexander Aring | 1630186 | 2014-10-28 18:21:18 +0100 | [diff] [blame] | 55 | ieee802154_alloc_hw(size_t priv_data_len, const struct ieee802154_ops *ops) |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 56 | { |
| 57 | struct wpan_phy *phy; |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 58 | struct ieee802154_local *local; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 59 | size_t priv_size; |
| 60 | |
Varka Bhadram | 8f45182 | 2015-06-23 11:41:03 +0530 | [diff] [blame] | 61 | if (WARN_ON(!ops || !(ops->xmit_async || ops->xmit_sync) || !ops->ed || |
| 62 | !ops->start || !ops->stop || !ops->set_channel)) |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 63 | return NULL; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 64 | |
| 65 | /* Ensure 32-byte alignment of our private data and hw private data. |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 66 | * We use the wpan_phy priv data for both our ieee802154_local and for |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 67 | * the driver's private data |
| 68 | * |
| 69 | * in memory it'll be like this: |
| 70 | * |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 71 | * +-------------------------+ |
| 72 | * | struct wpan_phy | |
| 73 | * +-------------------------+ |
| 74 | * | struct ieee802154_local | |
| 75 | * +-------------------------+ |
| 76 | * | driver's private data | |
| 77 | * +-------------------------+ |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 78 | * |
| 79 | * Due to ieee802154 layer isn't aware of driver and MAC structures, |
Alexander Aring | 139f14a | 2014-10-25 05:25:08 +0200 | [diff] [blame] | 80 | * so lets align them here. |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 81 | */ |
| 82 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 83 | priv_size = ALIGN(sizeof(*local), NETDEV_ALIGN) + priv_data_len; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 84 | |
Alexander Aring | f601379 | 2014-11-09 08:36:47 +0100 | [diff] [blame] | 85 | phy = wpan_phy_new(&mac802154_config_ops, priv_size); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 86 | if (!phy) { |
Chen Weilong | 83a1a7c | 2013-10-30 15:28:07 +0800 | [diff] [blame] | 87 | 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] | 88 | return NULL; |
| 89 | } |
| 90 | |
Alexander Aring | 6322d50 | 2014-11-12 03:36:51 +0100 | [diff] [blame] | 91 | phy->privid = mac802154_wpan_phy_privid; |
| 92 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 93 | local = wpan_phy_priv(phy); |
| 94 | local->phy = phy; |
| 95 | local->hw.phy = local->phy; |
| 96 | local->hw.priv = (char *)local + ALIGN(sizeof(*local), NETDEV_ALIGN); |
| 97 | local->ops = ops; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 98 | |
Alexander Aring | d98be45 | 2014-10-25 17:16:38 +0200 | [diff] [blame] | 99 | INIT_LIST_HEAD(&local->interfaces); |
| 100 | mutex_init(&local->iflist_mtx); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 101 | |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 102 | tasklet_init(&local->tasklet, |
| 103 | ieee802154_tasklet_handler, |
| 104 | (unsigned long)local); |
| 105 | |
| 106 | skb_queue_head_init(&local->skb_queue); |
| 107 | |
Lennert Buytenhek | c22ff7b | 2015-07-21 17:44:47 +0300 | [diff] [blame] | 108 | INIT_WORK(&local->tx_work, ieee802154_xmit_worker); |
| 109 | |
Alexander Aring | fea3318 | 2015-05-17 21:44:43 +0200 | [diff] [blame] | 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; |
Alexander Aring | 89c7d78 | 2015-08-10 21:15:56 +0200 | [diff] [blame] | 114 | phy->supported.min_frame_retries = 0; |
Alexander Aring | fea3318 | 2015-05-17 21:44:43 +0200 | [diff] [blame] | 115 | phy->supported.max_frame_retries = 7; |
| 116 | phy->supported.max_csma_backoffs = 5; |
| 117 | phy->supported.lbt = NL802154_SUPPORTED_BOOL_FALSE; |
| 118 | |
Alexander Aring | 6531868 | 2015-05-17 21:44:47 +0200 | [diff] [blame] | 119 | /* always supported */ |
| 120 | phy->supported.iftypes = BIT(NL802154_IFTYPE_NODE); |
| 121 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 122 | return &local->hw; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 123 | } |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 124 | EXPORT_SYMBOL(ieee802154_alloc_hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 125 | |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 126 | void ieee802154_free_hw(struct ieee802154_hw *hw) |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 127 | { |
Alexander Aring | 6074136 | 2014-10-25 17:16:39 +0200 | [diff] [blame] | 128 | struct ieee802154_local *local = hw_to_local(hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 129 | |
Alexander Aring | d98be45 | 2014-10-25 17:16:38 +0200 | [diff] [blame] | 130 | BUG_ON(!list_empty(&local->interfaces)); |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 131 | |
Alexander Aring | d98be45 | 2014-10-25 17:16:38 +0200 | [diff] [blame] | 132 | mutex_destroy(&local->iflist_mtx); |
Konstantin Khlebnikov | 1e9f954 | 2012-12-14 01:03:03 +0000 | [diff] [blame] | 133 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 134 | wpan_phy_free(local->phy); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 135 | } |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 136 | EXPORT_SYMBOL(ieee802154_free_hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 137 | |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 138 | static void ieee802154_setup_wpan_phy_pib(struct wpan_phy *wpan_phy) |
| 139 | { |
| 140 | /* TODO warn on empty symbol_duration |
| 141 | * Should be done when all drivers sets this value. |
| 142 | */ |
| 143 | |
| 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; |
| 148 | } |
| 149 | |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 150 | int ieee802154_register_hw(struct ieee802154_hw *hw) |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 151 | { |
Alexander Aring | 6074136 | 2014-10-25 17:16:39 +0200 | [diff] [blame] | 152 | struct ieee802154_local *local = hw_to_local(hw); |
Alexander Aring | e4962a1 | 2014-11-05 20:51:19 +0100 | [diff] [blame] | 153 | struct net_device *dev; |
Alexander Aring | 640985e | 2014-07-03 00:20:43 +0200 | [diff] [blame] | 154 | int rc = -ENOSYS; |
| 155 | |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 156 | local->workqueue = |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 157 | create_singlethread_workqueue(wpan_phy_name(local->phy)); |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 158 | if (!local->workqueue) { |
Alexander Aring | 640985e | 2014-07-03 00:20:43 +0200 | [diff] [blame] | 159 | rc = -ENOMEM; |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 160 | goto out; |
Alexander Aring | 640985e | 2014-07-03 00:20:43 +0200 | [diff] [blame] | 161 | } |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 162 | |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 163 | hrtimer_init(&local->ifs_timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); |
| 164 | local->ifs_timer.function = ieee802154_xmit_ifs_timer; |
| 165 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 166 | wpan_phy_set_dev(local->phy, local->hw.parent); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 167 | |
Alexander Aring | 61f2dcb | 2014-11-12 19:51:56 +0100 | [diff] [blame] | 168 | ieee802154_setup_wpan_phy_pib(local->phy); |
| 169 | |
Alexander Aring | fea3318 | 2015-05-17 21:44:43 +0200 | [diff] [blame] | 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; |
| 177 | } |
| 178 | |
| 179 | if (!(hw->flags & IEEE802154_HW_FRAME_RETRIES)) { |
Alexander Aring | 89c7d78 | 2015-08-10 21:15:56 +0200 | [diff] [blame] | 180 | local->phy->supported.min_frame_retries = 3; |
| 181 | local->phy->supported.max_frame_retries = 3; |
Alexander Aring | fea3318 | 2015-05-17 21:44:43 +0200 | [diff] [blame] | 182 | } |
| 183 | |
Alexander Aring | 6531868 | 2015-05-17 21:44:47 +0200 | [diff] [blame] | 184 | if (hw->flags & IEEE802154_HW_PROMISCUOUS) |
| 185 | local->phy->supported.iftypes |= BIT(NL802154_IFTYPE_MONITOR); |
| 186 | |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 187 | rc = wpan_phy_register(local->phy); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 188 | if (rc < 0) |
| 189 | goto out_wq; |
| 190 | |
Alexander Aring | e4962a1 | 2014-11-05 20:51:19 +0100 | [diff] [blame] | 191 | rtnl_lock(); |
| 192 | |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 193 | dev = ieee802154_if_add(local, "wpan%d", NET_NAME_ENUM, |
| 194 | NL802154_IFTYPE_NODE, |
Alexander Aring | 0e57547 | 2014-11-17 08:20:52 +0100 | [diff] [blame] | 195 | cpu_to_le64(0x0000000000000000ULL)); |
Alexander Aring | e4962a1 | 2014-11-05 20:51:19 +0100 | [diff] [blame] | 196 | if (IS_ERR(dev)) { |
| 197 | rtnl_unlock(); |
| 198 | rc = PTR_ERR(dev); |
Alexander Aring | 2b4d413 | 2015-04-30 17:44:53 +0200 | [diff] [blame] | 199 | goto out_phy; |
Alexander Aring | e4962a1 | 2014-11-05 20:51:19 +0100 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | rtnl_unlock(); |
| 203 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 204 | return 0; |
| 205 | |
Alexander Aring | 2b4d413 | 2015-04-30 17:44:53 +0200 | [diff] [blame] | 206 | out_phy: |
| 207 | wpan_phy_unregister(local->phy); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 208 | out_wq: |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 209 | destroy_workqueue(local->workqueue); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 210 | out: |
| 211 | return rc; |
| 212 | } |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 213 | EXPORT_SYMBOL(ieee802154_register_hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 214 | |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 215 | void ieee802154_unregister_hw(struct ieee802154_hw *hw) |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 216 | { |
Alexander Aring | 6074136 | 2014-10-25 17:16:39 +0200 | [diff] [blame] | 217 | struct ieee802154_local *local = hw_to_local(hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 218 | |
Alexander Aring | c5c47e6 | 2014-10-27 17:13:30 +0100 | [diff] [blame] | 219 | tasklet_kill(&local->tasklet); |
Alexander Aring | f773054 | 2014-10-25 17:16:41 +0200 | [diff] [blame] | 220 | flush_workqueue(local->workqueue); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 221 | |
| 222 | rtnl_lock(); |
| 223 | |
Alexander Aring | 592dfbf | 2014-11-12 03:36:48 +0100 | [diff] [blame] | 224 | ieee802154_remove_interfaces(local); |
alex.bluesman.smirnov@gmail.com | 62610ad | 2012-05-15 20:50:28 +0000 | [diff] [blame] | 225 | |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 226 | rtnl_unlock(); |
| 227 | |
Koen Zandberg | aef00c1 | 2016-02-10 11:49:38 +0100 | [diff] [blame] | 228 | destroy_workqueue(local->workqueue); |
Alexander Aring | a5e1ec5 | 2014-10-25 17:16:35 +0200 | [diff] [blame] | 229 | wpan_phy_unregister(local->phy); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 230 | } |
Alexander Aring | 5a50439 | 2014-10-25 17:16:34 +0200 | [diff] [blame] | 231 | EXPORT_SYMBOL(ieee802154_unregister_hw); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 232 | |
Alexander Aring | be4fd8e | 2014-11-12 03:36:53 +0100 | [diff] [blame] | 233 | static int __init ieee802154_init(void) |
| 234 | { |
| 235 | return ieee802154_iface_init(); |
| 236 | } |
| 237 | |
| 238 | static void __exit ieee802154_exit(void) |
| 239 | { |
| 240 | ieee802154_iface_exit(); |
| 241 | |
| 242 | rcu_barrier(); |
| 243 | } |
| 244 | |
| 245 | subsys_initcall(ieee802154_init); |
| 246 | module_exit(ieee802154_exit); |
| 247 | |
Alexander Aring | 912f67a | 2014-11-12 03:36:52 +0100 | [diff] [blame] | 248 | MODULE_DESCRIPTION("IEEE 802.15.4 subsystem"); |
alex.bluesman.smirnov@gmail.com | 1010f54 | 2012-05-15 20:50:20 +0000 | [diff] [blame] | 249 | MODULE_LICENSE("GPL v2"); |