blob: ae1a9ef2d42c0275eba9c1a1dee88f22640070d7 [file] [log] [blame]
Alexander Aring1201cd22014-11-02 04:18:36 +01001/* 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 Aringd5ae67b2014-11-05 20:51:17 +010016#include <net/rtnetlink.h>
Alexander Aring1201cd22014-11-02 04:18:36 +010017#include <net/cfg802154.h>
18
Alexander Aring4a9a8162014-11-02 04:18:38 +010019#include "ieee802154_i.h"
Alexander Aringab0bd562014-11-12 03:36:55 +010020#include "driver-ops.h"
Alexander Aringfdd20682014-11-02 21:43:05 +010021#include "cfg.h"
Alexander Aring4a9a8162014-11-02 04:18:38 +010022
23static struct net_device *
24ieee802154_add_iface_deprecated(struct wpan_phy *wpan_phy,
25 const char *name, int type)
26{
Alexander Aring986a8ab2014-11-05 20:51:15 +010027 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
Alexander Aringd5ae67b2014-11-05 20:51:17 +010028 struct net_device *dev;
Alexander Aring986a8ab2014-11-05 20:51:15 +010029
Alexander Aringd5ae67b2014-11-05 20:51:17 +010030 rtnl_lock();
Alexander Aring133d3f32014-11-17 08:20:50 +010031 dev = ieee802154_if_add(local, name, type);
Alexander Aringd5ae67b2014-11-05 20:51:17 +010032 rtnl_unlock();
33
34 return dev;
Alexander Aring4a9a8162014-11-02 04:18:38 +010035}
36
37static void ieee802154_del_iface_deprecated(struct wpan_phy *wpan_phy,
38 struct net_device *dev)
39{
Alexander Aringb210b182014-11-05 20:51:14 +010040 struct ieee802154_sub_if_data *sdata = IEEE802154_DEV_TO_SUB_IF(dev);
41
42 ieee802154_if_remove(sdata);
Alexander Aring4a9a8162014-11-02 04:18:38 +010043}
44
Alexander Aringab0bd562014-11-12 03:36:55 +010045static int
Alexander Aringf3ea5e42014-11-17 08:20:51 +010046ieee802154_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
59static int
Alexander Aring6d5fb872014-11-17 08:20:46 +010060ieee802154_set_channel(struct wpan_phy *wpan_phy, u8 page, u8 channel)
Alexander Aringab0bd562014-11-12 03:36:55 +010061{
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 Aring6d5fb872014-11-17 08:20:46 +010080static int
81ieee802154_set_pan_id(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
82 u16 pan_id)
Alexander Aring702bf372014-11-12 03:36:57 +010083{
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 Aring9830c622014-11-12 03:36:58 +0100100static int
Alexander Aring656a9992014-11-12 03:36:59 +0100101ieee802154_set_backoff_exponent(struct wpan_phy *wpan_phy,
102 struct wpan_dev *wpan_dev,
Alexander Aring6d5fb872014-11-17 08:20:46 +0100103 u8 min_be, u8 max_be)
Alexander Aring656a9992014-11-12 03:36:59 +0100104{
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
117static int
Alexander Aring9830c622014-11-12 03:36:58 +0100118ieee802154_set_short_addr(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
Alexander Aring6d5fb872014-11-17 08:20:46 +0100119 u16 short_addr)
Alexander Aring9830c622014-11-12 03:36:58 +0100120{
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 Aring6d5fb872014-11-17 08:20:46 +0100142static int
143ieee802154_set_max_csma_backoffs(struct wpan_phy *wpan_phy,
144 struct wpan_dev *wpan_dev,
145 u8 max_csma_backoffs)
Alexander Aringa01ba762014-11-12 03:37:01 +0100146{
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 Aring6d5fb872014-11-17 08:20:46 +0100158static int
159ieee802154_set_max_frame_retries(struct wpan_phy *wpan_phy,
160 struct wpan_dev *wpan_dev,
161 s8 max_frame_retries)
Alexander Aring17a3a462014-11-12 03:37:03 +0100162{
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 Aring6d5fb872014-11-17 08:20:46 +0100174static int
175ieee802154_set_lbt_mode(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
176 bool mode)
Alexander Aringc8937a1d2014-11-12 03:37:05 +0100177{
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 Aring1201cd22014-11-02 04:18:36 +0100189const struct cfg802154_ops mac802154_config_ops = {
Alexander Aring4a9a8162014-11-02 04:18:38 +0100190 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated,
191 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated,
Alexander Aringf3ea5e42014-11-17 08:20:51 +0100192 .add_virtual_intf = ieee802154_add_iface,
Alexander Aringab0bd562014-11-12 03:36:55 +0100193 .set_channel = ieee802154_set_channel,
Alexander Aring702bf372014-11-12 03:36:57 +0100194 .set_pan_id = ieee802154_set_pan_id,
Alexander Aring9830c622014-11-12 03:36:58 +0100195 .set_short_addr = ieee802154_set_short_addr,
Alexander Aring656a9992014-11-12 03:36:59 +0100196 .set_backoff_exponent = ieee802154_set_backoff_exponent,
Alexander Aringa01ba762014-11-12 03:37:01 +0100197 .set_max_csma_backoffs = ieee802154_set_max_csma_backoffs,
Alexander Aring17a3a462014-11-12 03:37:03 +0100198 .set_max_frame_retries = ieee802154_set_max_frame_retries,
Alexander Aringc8937a1d2014-11-12 03:37:05 +0100199 .set_lbt_mode = ieee802154_set_lbt_mode,
Alexander Aring1201cd22014-11-02 04:18:36 +0100200};