blob: 2b3610c514893d1c3ecf6f87c6fd1f71c351b464 [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();
31 dev = ieee802154_if_add(local, name, NULL, type);
32 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 Aring6d5fb872014-11-17 08:20:46 +010046ieee802154_set_channel(struct wpan_phy *wpan_phy, u8 page, u8 channel)
Alexander Aringab0bd562014-11-12 03:36:55 +010047{
48 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
49 int ret;
50
51 ASSERT_RTNL();
52
53 /* check if phy support this setting */
54 if (!(wpan_phy->channels_supported[page] & BIT(channel)))
55 return -EINVAL;
56
57 ret = drv_set_channel(local, page, channel);
58 if (!ret) {
59 wpan_phy->current_page = page;
60 wpan_phy->current_channel = channel;
61 }
62
63 return ret;
64}
65
Alexander Aring6d5fb872014-11-17 08:20:46 +010066static int
67ieee802154_set_pan_id(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
68 u16 pan_id)
Alexander Aring702bf372014-11-12 03:36:57 +010069{
70 ASSERT_RTNL();
71
72 /* TODO
73 * I am not sure about to check here on broadcast pan_id.
74 * Broadcast is a valid setting, comment from 802.15.4:
75 * If this value is 0xffff, the device is not associated.
76 *
77 * This could useful to simple deassociate an device.
78 */
79 if (pan_id == IEEE802154_PAN_ID_BROADCAST)
80 return -EINVAL;
81
82 wpan_dev->pan_id = cpu_to_le16(pan_id);
83 return 0;
84}
85
Alexander Aring9830c622014-11-12 03:36:58 +010086static int
Alexander Aring656a9992014-11-12 03:36:59 +010087ieee802154_set_backoff_exponent(struct wpan_phy *wpan_phy,
88 struct wpan_dev *wpan_dev,
Alexander Aring6d5fb872014-11-17 08:20:46 +010089 u8 min_be, u8 max_be)
Alexander Aring656a9992014-11-12 03:36:59 +010090{
91 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
92
93 ASSERT_RTNL();
94
95 if (!(local->hw.flags & IEEE802154_HW_CSMA_PARAMS))
96 return -EOPNOTSUPP;
97
98 wpan_dev->min_be = min_be;
99 wpan_dev->max_be = max_be;
100 return 0;
101}
102
103static int
Alexander Aring9830c622014-11-12 03:36:58 +0100104ieee802154_set_short_addr(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
Alexander Aring6d5fb872014-11-17 08:20:46 +0100105 u16 short_addr)
Alexander Aring9830c622014-11-12 03:36:58 +0100106{
107 ASSERT_RTNL();
108
109 /* TODO
110 * I am not sure about to check here on broadcast short_addr.
111 * Broadcast is a valid setting, comment from 802.15.4:
112 * A value of 0xfffe indicates that the device has
113 * associated but has not been allocated an address. A
114 * value of 0xffff indicates that the device does not
115 * have a short address.
116 *
117 * I think we should allow to set these settings but
118 * don't allow to allow socket communication with it.
119 */
120 if (short_addr == IEEE802154_ADDR_SHORT_UNSPEC ||
121 short_addr == IEEE802154_ADDR_SHORT_BROADCAST)
122 return -EINVAL;
123
124 wpan_dev->short_addr = cpu_to_le16(short_addr);
125 return 0;
126}
127
Alexander Aring6d5fb872014-11-17 08:20:46 +0100128static int
129ieee802154_set_max_csma_backoffs(struct wpan_phy *wpan_phy,
130 struct wpan_dev *wpan_dev,
131 u8 max_csma_backoffs)
Alexander Aringa01ba762014-11-12 03:37:01 +0100132{
133 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
134
135 ASSERT_RTNL();
136
137 if (!(local->hw.flags & IEEE802154_HW_CSMA_PARAMS))
138 return -EOPNOTSUPP;
139
140 wpan_dev->csma_retries = max_csma_backoffs;
141 return 0;
142}
143
Alexander Aring6d5fb872014-11-17 08:20:46 +0100144static int
145ieee802154_set_max_frame_retries(struct wpan_phy *wpan_phy,
146 struct wpan_dev *wpan_dev,
147 s8 max_frame_retries)
Alexander Aring17a3a462014-11-12 03:37:03 +0100148{
149 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
150
151 ASSERT_RTNL();
152
153 if (!(local->hw.flags & IEEE802154_HW_FRAME_RETRIES))
154 return -EOPNOTSUPP;
155
156 wpan_dev->frame_retries = max_frame_retries;
157 return 0;
158}
159
Alexander Aring6d5fb872014-11-17 08:20:46 +0100160static int
161ieee802154_set_lbt_mode(struct wpan_phy *wpan_phy, struct wpan_dev *wpan_dev,
162 bool mode)
Alexander Aringc8937a1d2014-11-12 03:37:05 +0100163{
164 struct ieee802154_local *local = wpan_phy_priv(wpan_phy);
165
166 ASSERT_RTNL();
167
168 if (!(local->hw.flags & IEEE802154_HW_LBT))
169 return -EOPNOTSUPP;
170
171 wpan_dev->lbt = mode;
172 return 0;
173}
174
Alexander Aring1201cd22014-11-02 04:18:36 +0100175const struct cfg802154_ops mac802154_config_ops = {
Alexander Aring4a9a8162014-11-02 04:18:38 +0100176 .add_virtual_intf_deprecated = ieee802154_add_iface_deprecated,
177 .del_virtual_intf_deprecated = ieee802154_del_iface_deprecated,
Alexander Aringab0bd562014-11-12 03:36:55 +0100178 .set_channel = ieee802154_set_channel,
Alexander Aring702bf372014-11-12 03:36:57 +0100179 .set_pan_id = ieee802154_set_pan_id,
Alexander Aring9830c622014-11-12 03:36:58 +0100180 .set_short_addr = ieee802154_set_short_addr,
Alexander Aring656a9992014-11-12 03:36:59 +0100181 .set_backoff_exponent = ieee802154_set_backoff_exponent,
Alexander Aringa01ba762014-11-12 03:37:01 +0100182 .set_max_csma_backoffs = ieee802154_set_max_csma_backoffs,
Alexander Aring17a3a462014-11-12 03:37:03 +0100183 .set_max_frame_retries = ieee802154_set_max_frame_retries,
Alexander Aringc8937a1d2014-11-12 03:37:05 +0100184 .set_lbt_mode = ieee802154_set_lbt_mode,
Alexander Aring1201cd22014-11-02 04:18:36 +0100185};