aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac802154
diff options
context:
space:
mode:
authorAlexander Aring <alex.aring@gmail.com>2014-11-11 21:36:55 -0500
committerMarcel Holtmann <marcel@holtmann.org>2014-11-11 23:10:38 -0500
commitab0bd561724bf3c09aa80e76ca0a187c6880bc5c (patch)
tree0a76f4758dab960dbee5ab1f8577bd452adb948b /net/mac802154
parent9d30a8cf98b2dd132d6e4503718df78ffc1b7f53 (diff)
ieee820154: add channel set support
This patch adds page and channel setting support to nl802154 framework. Signed-off-by: Alexander Aring <alex.aring@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/mac802154')
-rw-r--r--net/mac802154/cfg.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/net/mac802154/cfg.c b/net/mac802154/cfg.c
index d2c4e8f89720..9d5b1895c752 100644
--- a/net/mac802154/cfg.c
+++ b/net/mac802154/cfg.c
@@ -17,6 +17,7 @@
17#include <net/cfg802154.h> 17#include <net/cfg802154.h>
18 18
19#include "ieee802154_i.h" 19#include "ieee802154_i.h"
20#include "driver-ops.h"
20#include "cfg.h" 21#include "cfg.h"
21 22
22static struct net_device * 23static struct net_device *
@@ -41,7 +42,30 @@ static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,
41 ieee802154_if_remove(sdata); 42 ieee802154_if_remove(sdata);
42} 43}
43 44
45static int
46ieee802154_set_channel(struct wpan_phy *wpan_phy, const u8 page,
47 const u8 channel)
48{
49 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
50 int ret;
51
52 ASSERT_RTNL();
53
54 /* check if phy support this setting */
55 if (!(wpan_phy->channels_supported[page] & BIT(channel)))
56 return -EINVAL;
57
58 ret = drv_set_channel(local, page, channel);
59 if (!ret) {
60 wpan_phy->current_page = page;
61 wpan_phy->current_channel = channel;
62 }
63
64 return ret;
65}
66
44const struct cfg802154_ops mac802154_config_ops = { 67const struct cfg802154_ops mac802154_config_ops = {
45 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated, 68 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated,
46 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated, 69 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated,
70 .set_channel = ieee802154_set_channel,
47}; 71};