Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 1 | /* This program is free software; you can redistribute it and/or modify |
| 2 | * it under the terms of the GNU General Public License version 2 |
| 3 | * as published by the Free Software Foundation. |
| 4 | * |
| 5 | * This program is distributed in the hope that it will be useful, |
| 6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 8 | * GNU General Public License for more details. |
| 9 | * |
| 10 | * Authors: |
| 11 | * Alexander Aring <aar@pengutronix.de> |
| 12 | * |
| 13 | * Based on: net/mac80211/cfg.c |
| 14 | */ |
| 15 | |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 16 | #include <net/rtnetlink.h> |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 17 | #include <net/cfg802154.h> |
| 18 | |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 19 | #include "ieee802154_i.h" |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 20 | #include "driver-ops.h" |
Alexander Aring | fdd2068 | 2014-11-02 21:43:05 +0100 | [diff] [blame] | 21 | #include "cfg.h" |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 22 | |
| 23 | static struct net_device * |
| 24 | ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy, |
| 25 | const char *name, int type) |
| 26 | { |
Alexander Aring | 986a8ab | 2014-11-05 20:51:15 +0100 | [diff] [blame] | 27 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 28 | struct net_device *dev; |
Alexander Aring | 986a8ab | 2014-11-05 20:51:15 +0100 | [diff] [blame] | 29 | |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 30 | rtnl_lock(); |
Alexander Aring | 133d3f3 | 2014-11-17 08:20:50 +0100 | [diff] [blame] | 31 | dev = ieee802154_if_add(local, name, type); |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 32 | rtnl_unlock(); |
| 33 | |
| 34 | return dev; |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy, |
| 38 | struct net_device *dev) |
| 39 | { |
Alexander Aring | b210b18 | 2014-11-05 20:51:14 +0100 | [diff] [blame] | 40 | struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); |
| 41 | |
| 42 | ieee802154_if_remove(sdata); |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 43 | } |
| 44 | |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 45 | static int |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame^] | 46 | ieee802154_add_iface(struct wpan_phy *phy, const char *name, |
| 47 | enum nl802154_iftype type) |
| 48 | { |
| 49 | struct ieee802154_local *local = wpan_phy_priv(phy); |
| 50 | struct net_device *err; |
| 51 | |
| 52 | err = ieee802154_if_add(local, name, type); |
| 53 | if (IS_ERR(err)) |
| 54 | return PTR_ERR(err); |
| 55 | |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | static int |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 60 | ieee802154_set_channel(struct wpan_phy *wpan_phy, u8 page, u8 channel) |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 61 | { |
| 62 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 63 | int ret; |
| 64 | |
| 65 | ASSERT_RTNL(); |
| 66 | |
| 67 | /* check if phy support this setting */ |
| 68 | if (!(wpan_phy->channels_supported[page] & BIT(channel))) |
| 69 | return -EINVAL; |
| 70 | |
| 71 | ret = drv_set_channel(local, page, channel); |
| 72 | if (!ret) { |
| 73 | wpan_phy->current_page = page; |
| 74 | wpan_phy->current_channel = channel; |
| 75 | } |
| 76 | |
| 77 | return ret; |
| 78 | } |
| 79 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 80 | static int |
| 81 | ieee802154_set_pan_id(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
| 82 | u16 pan_id) |
Alexander Aring | 702bf37 | 2014-11-12 03:36:57 +0100 | [diff] [blame] | 83 | { |
| 84 | ASSERT_RTNL(); |
| 85 | |
| 86 | /* TODO |
| 87 | * I am not sure about to check here on broadcast pan_id. |
| 88 | * Broadcast is a valid setting, comment from 802.15.4: |
| 89 | * If this value is 0xffff, the device is not associated. |
| 90 | * |
| 91 | * This could useful to simple deassociate an device. |
| 92 | */ |
| 93 | if (pan_id == IEEE802154_PAN_ID_BROADCAST) |
| 94 | return -EINVAL; |
| 95 | |
| 96 | wpan_dev->pan_id = cpu_to_le16(pan_id); |
| 97 | return 0; |
| 98 | } |
| 99 | |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 100 | static int |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 101 | ieee802154_set_backoff_exponent(struct wpan_phy *wpan_phy, |
| 102 | struct wpan_dev *wpan_dev, |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 103 | u8 min_be, u8 max_be) |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 104 | { |
| 105 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 106 | |
| 107 | ASSERT_RTNL(); |
| 108 | |
| 109 | if (!(local->hw.flags & IEEE802154_HW_CSMA_PARAMS)) |
| 110 | return -EOPNOTSUPP; |
| 111 | |
| 112 | wpan_dev->min_be = min_be; |
| 113 | wpan_dev->max_be = max_be; |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | static int |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 118 | ieee802154_set_short_addr(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 119 | u16 short_addr) |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 120 | { |
| 121 | ASSERT_RTNL(); |
| 122 | |
| 123 | /* TODO |
| 124 | * I am not sure about to check here on broadcast short_addr. |
| 125 | * Broadcast is a valid setting, comment from 802.15.4: |
| 126 | * A value of 0xfffe indicates that the device has |
| 127 | * associated but has not been allocated an address. A |
| 128 | * value of 0xffff indicates that the device does not |
| 129 | * have a short address. |
| 130 | * |
| 131 | * I think we should allow to set these settings but |
| 132 | * don't allow to allow socket communication with it. |
| 133 | */ |
| 134 | if (short_addr == IEEE802154_ADDR_SHORT_UNSPEC || |
| 135 | short_addr == IEEE802154_ADDR_SHORT_BROADCAST) |
| 136 | return -EINVAL; |
| 137 | |
| 138 | wpan_dev->short_addr = cpu_to_le16(short_addr); |
| 139 | return 0; |
| 140 | } |
| 141 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 142 | static int |
| 143 | ieee802154_set_max_csma_backoffs(struct wpan_phy *wpan_phy, |
| 144 | struct wpan_dev *wpan_dev, |
| 145 | u8 max_csma_backoffs) |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 146 | { |
| 147 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 148 | |
| 149 | ASSERT_RTNL(); |
| 150 | |
| 151 | if (!(local->hw.flags & IEEE802154_HW_CSMA_PARAMS)) |
| 152 | return -EOPNOTSUPP; |
| 153 | |
| 154 | wpan_dev->csma_retries = max_csma_backoffs; |
| 155 | return 0; |
| 156 | } |
| 157 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 158 | static int |
| 159 | ieee802154_set_max_frame_retries(struct wpan_phy *wpan_phy, |
| 160 | struct wpan_dev *wpan_dev, |
| 161 | s8 max_frame_retries) |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 162 | { |
| 163 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 164 | |
| 165 | ASSERT_RTNL(); |
| 166 | |
| 167 | if (!(local->hw.flags & IEEE802154_HW_FRAME_RETRIES)) |
| 168 | return -EOPNOTSUPP; |
| 169 | |
| 170 | wpan_dev->frame_retries = max_frame_retries; |
| 171 | return 0; |
| 172 | } |
| 173 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 174 | static int |
| 175 | ieee802154_set_lbt_mode(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
| 176 | bool mode) |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 177 | { |
| 178 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 179 | |
| 180 | ASSERT_RTNL(); |
| 181 | |
| 182 | if (!(local->hw.flags & IEEE802154_HW_LBT)) |
| 183 | return -EOPNOTSUPP; |
| 184 | |
| 185 | wpan_dev->lbt = mode; |
| 186 | return 0; |
| 187 | } |
| 188 | |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 189 | const struct cfg802154_ops mac802154_config_ops = { |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 190 | .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated, |
| 191 | .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated, |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame^] | 192 | .add_virtual_intf = ieee802154_add_iface, |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 193 | .set_channel = ieee802154_set_channel, |
Alexander Aring | 702bf37 | 2014-11-12 03:36:57 +0100 | [diff] [blame] | 194 | .set_pan_id = ieee802154_set_pan_id, |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 195 | .set_short_addr = ieee802154_set_short_addr, |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 196 | .set_backoff_exponent = ieee802154_set_backoff_exponent, |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 197 | .set_max_csma_backoffs = ieee802154_set_max_csma_backoffs, |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 198 | .set_max_frame_retries = ieee802154_set_max_frame_retries, |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 199 | .set_lbt_mode = ieee802154_set_lbt_mode, |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 200 | }; |