ieee802154_dev.c 9.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright (C) 2007-2012 Siemens AG
 *
 * Written by:
 * Alexander Smirnov <alex.bluesman.smirnov@gmail.com>
 *
 * Based on the code from 'linux-zigbee.sourceforge.net' project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/netdevice.h>

27 28
#include <net/netlink.h>
#include <linux/nl802154.h>
29
#include <net/mac802154.h>
30
#include <net/ieee802154_netdev.h>
31 32 33 34 35
#include <net/route.h>
#include <net/wpan-phy.h>

#include "mac802154.h"

36 37 38
int mac802154_slave_open(struct net_device *dev)
{
	struct mac802154_sub_if_data *priv = netdev_priv(dev);
39
	struct mac802154_sub_if_data *subif;
40 41 42
	struct mac802154_priv *ipriv = priv->hw;
	int res = 0;

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
	ASSERT_RTNL();

	if (priv->type == IEEE802154_DEV_WPAN) {
		mutex_lock(&priv->hw->slaves_mtx);
		list_for_each_entry(subif, &priv->hw->slaves, list) {
			if (subif != priv && subif->type == priv->type &&
			    subif->running) {
				mutex_unlock(&priv->hw->slaves_mtx);
				return -EBUSY;
			}
		}
		mutex_unlock(&priv->hw->slaves_mtx);
	}

	mutex_lock(&priv->hw->slaves_mtx);
	priv->running = true;
	mutex_unlock(&priv->hw->slaves_mtx);

61 62 63 64 65 66 67 68
	if (ipriv->open_count++ == 0) {
		res = ipriv->ops->start(&ipriv->hw);
		WARN_ON(res);
		if (res)
			goto err;
	}

	if (ipriv->ops->ieee_addr) {
69 70 71
		__le64 addr = ieee802154_devaddr_from_raw(dev->dev_addr);

		res = ipriv->ops->ieee_addr(&ipriv->hw, addr);
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
		WARN_ON(res);
		if (res)
			goto err;
		mac802154_dev_set_ieee_addr(dev);
	}

	netif_start_queue(dev);
	return 0;
err:
	priv->hw->open_count--;

	return res;
}

int mac802154_slave_close(struct net_device *dev)
{
	struct mac802154_sub_if_data *priv = netdev_priv(dev);
	struct mac802154_priv *ipriv = priv->hw;

91 92
	ASSERT_RTNL();

93 94
	netif_stop_queue(dev);

95 96 97 98
	mutex_lock(&priv->hw->slaves_mtx);
	priv->running = false;
	mutex_unlock(&priv->hw->slaves_mtx);

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
	if (!--ipriv->open_count)
		ipriv->ops->stop(&ipriv->hw);

	return 0;
}

static int
mac802154_netdev_register(struct wpan_phy *phy, struct net_device *dev)
{
	struct mac802154_sub_if_data *priv;
	struct mac802154_priv *ipriv;
	int err;

	ipriv = wpan_phy_priv(phy);

	priv = netdev_priv(dev);
	priv->dev = dev;
	priv->hw = ipriv;

	dev->needed_headroom = ipriv->hw.extra_tx_headroom;

	SET_NETDEV_DEV(dev, &ipriv->phy->dev);

	mutex_lock(&ipriv->slaves_mtx);
	if (!ipriv->running) {
		mutex_unlock(&ipriv->slaves_mtx);
		return -ENODEV;
	}
	mutex_unlock(&ipriv->slaves_mtx);

	err = register_netdev(dev);
	if (err < 0)
		return err;

	rtnl_lock();
	mutex_lock(&ipriv->slaves_mtx);
	list_add_tail_rcu(&priv->list, &ipriv->slaves);
	mutex_unlock(&ipriv->slaves_mtx);
	rtnl_unlock();

	return 0;
}

static void
mac802154_del_iface(struct wpan_phy *phy, struct net_device *dev)
{
	struct mac802154_sub_if_data *sdata;
146

147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	ASSERT_RTNL();

	sdata = netdev_priv(dev);

	BUG_ON(sdata->hw->phy != phy);

	mutex_lock(&sdata->hw->slaves_mtx);
	list_del_rcu(&sdata->list);
	mutex_unlock(&sdata->hw->slaves_mtx);

	synchronize_rcu();
	unregister_netdevice(sdata->dev);
}

static struct net_device *
mac802154_add_iface(struct wpan_phy *phy, const char *name, int type)
{
	struct net_device *dev;
	int err = -ENOMEM;

	switch (type) {
168 169 170 171
	case IEEE802154_DEV_MONITOR:
		dev = alloc_netdev(sizeof(struct mac802154_sub_if_data),
				   name, mac802154_monitor_setup);
		break;
172 173 174 175
	case IEEE802154_DEV_WPAN:
		dev = alloc_netdev(sizeof(struct mac802154_sub_if_data),
				   name, mac802154_wpan_setup);
		break;
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
	default:
		dev = NULL;
		err = -EINVAL;
		break;
	}
	if (!dev)
		goto err;

	err = mac802154_netdev_register(phy, dev);
	if (err)
		goto err_free;

	dev_hold(dev); /* we return an incremented device refcount */
	return dev;

err_free:
	free_netdev(dev);
err:
	return ERR_PTR(err);
}

197 198 199 200 201 202 203
static int mac802154_set_txpower(struct wpan_phy *phy, int db)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_txpower(&priv->hw, db);
}

204 205 206 207 208 209 210
static int mac802154_set_lbt(struct wpan_phy *phy, bool on)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_lbt(&priv->hw, on);
}

211 212 213 214 215 216 217
static int mac802154_set_cca_mode(struct wpan_phy *phy, u8 mode)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_cca_mode(&priv->hw, mode);
}

218 219 220 221 222 223 224
static int mac802154_set_cca_ed_level(struct wpan_phy *phy, s32 level)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_cca_ed_level(&priv->hw, level);
}

225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
static int mac802154_set_csma_params(struct wpan_phy *phy, u8 min_be,
				     u8 max_be, u8 retries)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_csma_params(&priv->hw, min_be, max_be, retries);
}

static int mac802154_set_frame_retries(struct wpan_phy *phy, s8 retries)
{
	struct mac802154_priv *priv = wpan_phy_priv(phy);

	return priv->ops->set_frame_retries(&priv->hw, retries);
}

240 241 242 243 244 245 246 247 248
struct ieee802154_dev *
ieee802154_alloc_device(size_t priv_data_len, struct ieee802154_ops *ops)
{
	struct wpan_phy *phy;
	struct mac802154_priv *priv;
	size_t priv_size;

	if (!ops || !ops->xmit || !ops->ed || !ops->start ||
	    !ops->stop || !ops->set_channel) {
249
		pr_err("undefined IEEE802.15.4 device operations\n");
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
		return NULL;
	}

	/* Ensure 32-byte alignment of our private data and hw private data.
	 * We use the wpan_phy priv data for both our mac802154_priv and for
	 * the driver's private data
	 *
	 * in memory it'll be like this:
	 *
	 * +-----------------------+
	 * | struct wpan_phy       |
	 * +-----------------------+
	 * | struct mac802154_priv |
	 * +-----------------------+
	 * | driver's private data |
	 * +-----------------------+
	 *
	 * Due to ieee802154 layer isn't aware of driver and MAC structures,
	 * so lets allign them here.
	 */

	priv_size = ALIGN(sizeof(*priv), NETDEV_ALIGN) + priv_data_len;

	phy = wpan_phy_alloc(priv_size);
	if (!phy) {
275
		pr_err("failure to allocate master IEEE802.15.4 device\n");
276 277 278 279
		return NULL;
	}

	priv = wpan_phy_priv(phy);
280 281
	priv->phy = phy;
	priv->hw.phy = priv->phy;
282 283 284 285 286 287 288 289 290 291 292 293 294 295
	priv->hw.priv = (char *)priv + ALIGN(sizeof(*priv), NETDEV_ALIGN);
	priv->ops = ops;

	INIT_LIST_HEAD(&priv->slaves);
	mutex_init(&priv->slaves_mtx);

	return &priv->hw;
}
EXPORT_SYMBOL(ieee802154_alloc_device);

void ieee802154_free_device(struct ieee802154_dev *hw)
{
	struct mac802154_priv *priv = mac802154_to_priv(hw);

296 297
	BUG_ON(!list_empty(&priv->slaves));

298
	mutex_destroy(&priv->slaves_mtx);
299 300

	wpan_phy_free(priv->phy);
301 302 303 304 305 306
}
EXPORT_SYMBOL(ieee802154_free_device);

int ieee802154_register_device(struct ieee802154_dev *dev)
{
	struct mac802154_priv *priv = mac802154_to_priv(dev);
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
	int rc = -ENOSYS;

	if (dev->flags & IEEE802154_HW_TXPOWER) {
		if (!priv->ops->set_txpower)
			goto out;

		priv->phy->set_txpower = mac802154_set_txpower;
	}

	if (dev->flags & IEEE802154_HW_LBT) {
		if (!priv->ops->set_lbt)
			goto out;

		priv->phy->set_lbt = mac802154_set_lbt;
	}

	if (dev->flags & IEEE802154_HW_CCA_MODE) {
		if (!priv->ops->set_cca_mode)
			goto out;

		priv->phy->set_cca_mode = mac802154_set_cca_mode;
	}

	if (dev->flags & IEEE802154_HW_CCA_ED_LEVEL) {
		if (!priv->ops->set_cca_ed_level)
			goto out;

		priv->phy->set_cca_ed_level = mac802154_set_cca_ed_level;
	}

	if (dev->flags & IEEE802154_HW_CSMA_PARAMS) {
		if (!priv->ops->set_csma_params)
			goto out;

		priv->phy->set_csma_params = mac802154_set_csma_params;
	}

	if (dev->flags & IEEE802154_HW_FRAME_RETRIES) {
		if (!priv->ops->set_frame_retries)
			goto out;

		priv->phy->set_frame_retries = mac802154_set_frame_retries;
	}
350 351 352

	priv->dev_workqueue =
		create_singlethread_workqueue(wpan_phy_name(priv->phy));
353 354
	if (!priv->dev_workqueue) {
		rc = -ENOMEM;
355
		goto out;
356
	}
357 358 359

	wpan_phy_set_dev(priv->phy, priv->hw.parent);

360 361 362
	priv->phy->add_iface = mac802154_add_iface;
	priv->phy->del_iface = mac802154_del_iface;

363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
	rc = wpan_phy_register(priv->phy);
	if (rc < 0)
		goto out_wq;

	rtnl_lock();

	mutex_lock(&priv->slaves_mtx);
	priv->running = MAC802154_DEVICE_RUN;
	mutex_unlock(&priv->slaves_mtx);

	rtnl_unlock();

	return 0;

out_wq:
	destroy_workqueue(priv->dev_workqueue);
out:
	return rc;
}
EXPORT_SYMBOL(ieee802154_register_device);

void ieee802154_unregister_device(struct ieee802154_dev *dev)
{
	struct mac802154_priv *priv = mac802154_to_priv(dev);
387
	struct mac802154_sub_if_data *sdata, *next;
388 389 390 391 392 393 394 395 396 397

	flush_workqueue(priv->dev_workqueue);
	destroy_workqueue(priv->dev_workqueue);

	rtnl_lock();

	mutex_lock(&priv->slaves_mtx);
	priv->running = MAC802154_DEVICE_STOPPED;
	mutex_unlock(&priv->slaves_mtx);

398 399 400 401 402 403 404 405
	list_for_each_entry_safe(sdata, next, &priv->slaves, list) {
		mutex_lock(&sdata->hw->slaves_mtx);
		list_del(&sdata->list);
		mutex_unlock(&sdata->hw->slaves_mtx);

		unregister_netdevice(sdata->dev);
	}

406 407 408 409 410 411 412 413
	rtnl_unlock();

	wpan_phy_unregister(priv->phy);
}
EXPORT_SYMBOL(ieee802154_unregister_device);

MODULE_DESCRIPTION("IEEE 802.15.4 implementation");
MODULE_LICENSE("GPL v2");