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, |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 25 | const char *name, |
| 26 | unsigned char name_assign_type, int type) |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 27 | { |
Alexander Aring | 986a8ab | 2014-11-05 20:51:15 +0100 | [diff] [blame] | 28 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 29 | struct net_device *dev; |
Alexander Aring | 986a8ab | 2014-11-05 20:51:15 +0100 | [diff] [blame] | 30 | |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 31 | rtnl_lock(); |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 32 | dev = ieee802154_if_add(local, name, name_assign_type, type, |
Alexander Aring | 0e57547 | 2014-11-17 08:20:52 +0100 | [diff] [blame] | 33 | cpu_to_le64(0x0000000000000000ULL)); |
Alexander Aring | d5ae67b | 2014-11-05 20:51:17 +0100 | [diff] [blame] | 34 | rtnl_unlock(); |
| 35 | |
| 36 | return dev; |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy, |
| 40 | struct net_device *dev) |
| 41 | { |
Alexander Aring | b210b18 | 2014-11-05 20:51:14 +0100 | [diff] [blame] | 42 | struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev); |
| 43 | |
| 44 | ieee802154_if_remove(sdata); |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 45 | } |
| 46 | |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 47 | static int |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame] | 48 | ieee802154_add_iface(struct wpan_phy *phy, const char *name, |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 49 | unsigned char name_assign_type, |
Alexander Aring | 0e57547 | 2014-11-17 08:20:52 +0100 | [diff] [blame] | 50 | enum nl802154_iftype type, __le64 extended_addr) |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame] | 51 | { |
| 52 | struct ieee802154_local *local = wpan_phy_priv(phy); |
| 53 | struct net_device *err; |
| 54 | |
Varka Bhadram | 5b4a1039 | 2015-04-30 17:44:57 +0200 | [diff] [blame] | 55 | err = ieee802154_if_add(local, name, name_assign_type, type, |
| 56 | extended_addr); |
Alexander Aring | 36cf942 | 2015-01-02 15:49:41 +0100 | [diff] [blame] | 57 | return PTR_ERR_OR_ZERO(err); |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | static int |
Alexander Aring | b821ecd | 2014-11-17 08:20:53 +0100 | [diff] [blame] | 61 | ieee802154_del_iface(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev) |
| 62 | { |
| 63 | ieee802154_if_remove(IEEE802154_WPAN_DEV_TO_SUB_IF(wpan_dev)); |
| 64 | |
| 65 | return 0; |
| 66 | } |
| 67 | |
| 68 | static int |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 69 | ieee802154_set_channel(struct wpan_phy *wpan_phy, u8 page, u8 channel) |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 70 | { |
| 71 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 72 | int ret; |
| 73 | |
| 74 | ASSERT_RTNL(); |
| 75 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 76 | if (wpan_phy->current_page == page && |
| 77 | wpan_phy->current_channel == channel) |
| 78 | return 0; |
| 79 | |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 80 | ret = drv_set_channel(local, page, channel); |
| 81 | if (!ret) { |
| 82 | wpan_phy->current_page = page; |
| 83 | wpan_phy->current_channel = channel; |
| 84 | } |
| 85 | |
| 86 | return ret; |
| 87 | } |
| 88 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 89 | static int |
Alexander Aring | ba2a950 | 2014-12-10 15:33:13 +0100 | [diff] [blame] | 90 | ieee802154_set_cca_mode(struct wpan_phy *wpan_phy, |
| 91 | const struct wpan_phy_cca *cca) |
| 92 | { |
| 93 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 94 | int ret; |
| 95 | |
| 96 | ASSERT_RTNL(); |
| 97 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 98 | if (wpan_phy_cca_cmp(&wpan_phy->cca, cca)) |
| 99 | return 0; |
| 100 | |
Alexander Aring | ba2a950 | 2014-12-10 15:33:13 +0100 | [diff] [blame] | 101 | ret = drv_set_cca_mode(local, cca); |
| 102 | if (!ret) |
| 103 | wpan_phy->cca = *cca; |
| 104 | |
| 105 | return ret; |
| 106 | } |
| 107 | |
| 108 | static int |
Alexander Aring | b69644c | 2015-05-27 13:42:10 +0200 | [diff] [blame] | 109 | ieee802154_set_cca_ed_level(struct wpan_phy *wpan_phy, s32 ed_level) |
| 110 | { |
| 111 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 112 | int ret; |
| 113 | |
| 114 | ASSERT_RTNL(); |
| 115 | |
| 116 | if (wpan_phy->cca_ed_level == ed_level) |
| 117 | return 0; |
| 118 | |
| 119 | ret = drv_set_cca_ed_level(local, ed_level); |
| 120 | if (!ret) |
| 121 | wpan_phy->cca_ed_level = ed_level; |
| 122 | |
| 123 | return ret; |
| 124 | } |
| 125 | |
| 126 | static int |
Varka Bhadram | 0f999b0 | 2015-05-27 09:10:54 +0530 | [diff] [blame] | 127 | ieee802154_set_tx_power(struct wpan_phy *wpan_phy, s32 power) |
| 128 | { |
| 129 | struct ieee802154_local *local = wpan_phy_priv(wpan_phy); |
| 130 | int ret; |
| 131 | |
| 132 | ASSERT_RTNL(); |
| 133 | |
| 134 | if (wpan_phy->transmit_power == power) |
| 135 | return 0; |
| 136 | |
| 137 | ret = drv_set_tx_power(local, power); |
| 138 | if (!ret) |
| 139 | wpan_phy->transmit_power = power; |
| 140 | |
| 141 | return ret; |
| 142 | } |
| 143 | |
| 144 | static int |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 145 | ieee802154_set_pan_id(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
Alexander Aring | ee7b905 | 2014-11-17 08:20:55 +0100 | [diff] [blame] | 146 | __le16 pan_id) |
Alexander Aring | 702bf37 | 2014-11-12 03:36:57 +0100 | [diff] [blame] | 147 | { |
| 148 | ASSERT_RTNL(); |
| 149 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 150 | if (wpan_dev->pan_id == pan_id) |
| 151 | return 0; |
| 152 | |
Alexander Aring | ee7b905 | 2014-11-17 08:20:55 +0100 | [diff] [blame] | 153 | wpan_dev->pan_id = pan_id; |
Alexander Aring | 702bf37 | 2014-11-12 03:36:57 +0100 | [diff] [blame] | 154 | return 0; |
| 155 | } |
| 156 | |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 157 | static int |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 158 | ieee802154_set_backoff_exponent(struct wpan_phy *wpan_phy, |
| 159 | struct wpan_dev *wpan_dev, |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 160 | u8 min_be, u8 max_be) |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 161 | { |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 162 | ASSERT_RTNL(); |
| 163 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 164 | if (wpan_dev->min_be == min_be && |
| 165 | wpan_dev->max_be == max_be) |
| 166 | return 0; |
| 167 | |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 168 | wpan_dev->min_be = min_be; |
| 169 | wpan_dev->max_be = max_be; |
| 170 | return 0; |
| 171 | } |
| 172 | |
| 173 | static int |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 174 | ieee802154_set_short_addr(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
Alexander Aring | ee7b905 | 2014-11-17 08:20:55 +0100 | [diff] [blame] | 175 | __le16 short_addr) |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 176 | { |
| 177 | ASSERT_RTNL(); |
| 178 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 179 | if (wpan_dev->short_addr == short_addr) |
| 180 | return 0; |
| 181 | |
Alexander Aring | ee7b905 | 2014-11-17 08:20:55 +0100 | [diff] [blame] | 182 | wpan_dev->short_addr = short_addr; |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 183 | return 0; |
| 184 | } |
| 185 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 186 | static int |
| 187 | ieee802154_set_max_csma_backoffs(struct wpan_phy *wpan_phy, |
| 188 | struct wpan_dev *wpan_dev, |
| 189 | u8 max_csma_backoffs) |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 190 | { |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 191 | ASSERT_RTNL(); |
| 192 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 193 | if (wpan_dev->csma_retries == max_csma_backoffs) |
| 194 | return 0; |
| 195 | |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 196 | wpan_dev->csma_retries = max_csma_backoffs; |
| 197 | return 0; |
| 198 | } |
| 199 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 200 | static int |
| 201 | ieee802154_set_max_frame_retries(struct wpan_phy *wpan_phy, |
| 202 | struct wpan_dev *wpan_dev, |
| 203 | s8 max_frame_retries) |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 204 | { |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 205 | ASSERT_RTNL(); |
| 206 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 207 | if (wpan_dev->frame_retries == max_frame_retries) |
| 208 | return 0; |
| 209 | |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 210 | wpan_dev->frame_retries = max_frame_retries; |
| 211 | return 0; |
| 212 | } |
| 213 | |
Alexander Aring | 6d5fb87 | 2014-11-17 08:20:46 +0100 | [diff] [blame] | 214 | static int |
| 215 | ieee802154_set_lbt_mode(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev, |
| 216 | bool mode) |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 217 | { |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 218 | ASSERT_RTNL(); |
| 219 | |
Alexander Aring | 791021b | 2015-05-17 21:44:44 +0200 | [diff] [blame] | 220 | if (wpan_dev->lbt == mode) |
| 221 | return 0; |
| 222 | |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 223 | wpan_dev->lbt = mode; |
| 224 | return 0; |
| 225 | } |
| 226 | |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 227 | const struct cfg802154_ops mac802154_config_ops = { |
Alexander Aring | 4a9a816 | 2014-11-02 04:18:38 +0100 | [diff] [blame] | 228 | .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated, |
| 229 | .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated, |
Alexander Aring | f3ea5e4 | 2014-11-17 08:20:51 +0100 | [diff] [blame] | 230 | .add_virtual_intf = ieee802154_add_iface, |
Alexander Aring | b821ecd | 2014-11-17 08:20:53 +0100 | [diff] [blame] | 231 | .del_virtual_intf = ieee802154_del_iface, |
Alexander Aring | ab0bd56 | 2014-11-12 03:36:55 +0100 | [diff] [blame] | 232 | .set_channel = ieee802154_set_channel, |
Alexander Aring | ba2a950 | 2014-12-10 15:33:13 +0100 | [diff] [blame] | 233 | .set_cca_mode = ieee802154_set_cca_mode, |
Alexander Aring | b69644c | 2015-05-27 13:42:10 +0200 | [diff] [blame] | 234 | .set_cca_ed_level = ieee802154_set_cca_ed_level, |
Varka Bhadram | 0f999b0 | 2015-05-27 09:10:54 +0530 | [diff] [blame] | 235 | .set_tx_power = ieee802154_set_tx_power, |
Alexander Aring | 702bf37 | 2014-11-12 03:36:57 +0100 | [diff] [blame] | 236 | .set_pan_id = ieee802154_set_pan_id, |
Alexander Aring | 9830c62 | 2014-11-12 03:36:58 +0100 | [diff] [blame] | 237 | .set_short_addr = ieee802154_set_short_addr, |
Alexander Aring | 656a999 | 2014-11-12 03:36:59 +0100 | [diff] [blame] | 238 | .set_backoff_exponent = ieee802154_set_backoff_exponent, |
Alexander Aring | a01ba76 | 2014-11-12 03:37:01 +0100 | [diff] [blame] | 239 | .set_max_csma_backoffs = ieee802154_set_max_csma_backoffs, |
Alexander Aring | 17a3a46 | 2014-11-12 03:37:03 +0100 | [diff] [blame] | 240 | .set_max_frame_retries = ieee802154_set_max_frame_retries, |
Alexander Aring | c8937a1d | 2014-11-12 03:37:05 +0100 | [diff] [blame] | 241 | .set_lbt_mode = ieee802154_set_lbt_mode, |
Alexander Aring | 1201cd2 | 2014-11-02 04:18:36 +0100 | [diff] [blame] | 242 | }; |