|
@@ -790,6 +790,28 @@ static int nl802154_set_cca_mode(struct sk_buff *skb, struct genl_info *info)
|
|
|
return rdev_set_cca_mode(rdev, &cca);
|
|
|
}
|
|
|
|
|
|
+static int nl802154_set_cca_ed_level(struct sk_buff *skb, struct genl_info *info)
|
|
|
+{
|
|
|
+ struct cfg802154_registered_device *rdev = info->user_ptr[0];
|
|
|
+ s32 ed_level;
|
|
|
+ int i;
|
|
|
+
|
|
|
+ if (!(rdev->wpan_phy.flags & WPAN_PHY_FLAG_CCA_ED_LEVEL))
|
|
|
+ return -EOPNOTSUPP;
|
|
|
+
|
|
|
+ if (!info->attrs[NL802154_ATTR_CCA_ED_LEVEL])
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ ed_level = nla_get_s32(info->attrs[NL802154_ATTR_CCA_ED_LEVEL]);
|
|
|
+
|
|
|
+ for (i = 0; i < rdev->wpan_phy.supported.cca_ed_levels_size; i++) {
|
|
|
+ if (ed_level == rdev->wpan_phy.supported.cca_ed_levels[i])
|
|
|
+ return rdev_set_cca_ed_level(rdev, ed_level);
|
|
|
+ }
|
|
|
+
|
|
|
+ return -EINVAL;
|
|
|
+}
|
|
|
+
|
|
|
static int nl802154_set_tx_power(struct sk_buff *skb, struct genl_info *info)
|
|
|
{
|
|
|
struct cfg802154_registered_device *rdev = info->user_ptr[0];
|
|
@@ -1122,6 +1144,14 @@ static const struct genl_ops nl802154_ops[] = {
|
|
|
.internal_flags = NL802154_FLAG_NEED_WPAN_PHY |
|
|
|
NL802154_FLAG_NEED_RTNL,
|
|
|
},
|
|
|
+ {
|
|
|
+ .cmd = NL802154_CMD_SET_CCA_ED_LEVEL,
|
|
|
+ .doit = nl802154_set_cca_ed_level,
|
|
|
+ .policy = nl802154_policy,
|
|
|
+ .flags = GENL_ADMIN_PERM,
|
|
|
+ .internal_flags = NL802154_FLAG_NEED_WPAN_PHY |
|
|
|
+ NL802154_FLAG_NEED_RTNL,
|
|
|
+ },
|
|
|
{
|
|
|
.cmd = NL802154_CMD_SET_TX_POWER,
|
|
|
.doit = nl802154_set_tx_power,
|