core.c 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * Copyright (C) 2007, 2008, 2009 Siemens AG
 *
 * 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.
 *
 */

15
#include <linux/slab.h>
16 17 18 19
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/device.h>

20
#include <net/cfg802154.h>
21

22
#include "ieee802154.h"
A
Alexander Aring 已提交
23
#include "sysfs.h"
24
#include "core.h"
25

26
static int wpan_phy_match(struct device *dev, const void *data)
27 28 29 30 31 32 33 34 35 36 37
{
	return !strcmp(dev_name(dev), (const char *)data);
}

struct wpan_phy *wpan_phy_find(const char *str)
{
	struct device *dev;

	if (WARN_ON(!str))
		return NULL;

38
	dev = class_find_device(&wpan_phy_class, NULL, str, wpan_phy_match);
39 40 41 42 43 44 45
	if (!dev)
		return NULL;

	return container_of(dev, struct wpan_phy, dev);
}
EXPORT_SYMBOL(wpan_phy_find);

46 47 48 49 50 51 52 53 54
struct wpan_phy_iter_data {
	int (*fn)(struct wpan_phy *phy, void *data);
	void *data;
};

static int wpan_phy_iter(struct device *dev, void *_data)
{
	struct wpan_phy_iter_data *wpid = _data;
	struct wpan_phy *phy = container_of(dev, struct wpan_phy, dev);
55

56 57 58 59
	return wpid->fn(phy, wpid->data);
}

int wpan_phy_for_each(int (*fn)(struct wpan_phy *phy, void *data),
60
		      void *data)
61 62 63 64 65 66 67 68 69 70 71
{
	struct wpan_phy_iter_data wpid = {
		.fn = fn,
		.data = data,
	};

	return class_for_each_device(&wpan_phy_class, NULL,
			&wpid, wpan_phy_iter);
}
EXPORT_SYMBOL(wpan_phy_for_each);

72
struct wpan_phy *
73
wpan_phy_new(const struct cfg802154_ops *ops, size_t priv_size)
74
{
75
	static atomic_t wpan_phy_counter = ATOMIC_INIT(0);
76 77 78 79 80 81 82 83 84
	struct cfg802154_registered_device *rdev;
	size_t alloc_size;

	alloc_size = sizeof(*rdev) + priv_size;
	rdev = kzalloc(alloc_size, GFP_KERNEL);
	if (!rdev)
		return NULL;

	rdev->ops = ops;
85

86 87 88 89 90
	rdev->wpan_phy_idx = atomic_inc_return(&wpan_phy_counter);

	if (unlikely(rdev->wpan_phy_idx < 0)) {
		/* ugh, wrapped! */
		atomic_dec(&wpan_phy_counter);
91
		kfree(rdev);
92
		return NULL;
93
	}
94 95 96

	/* atomic_inc_return makes it start at 1, make it start at 0 */
	rdev->wpan_phy_idx--;
97

98
	mutex_init(&rdev->wpan_phy.pib_lock);
99

100
	device_initialize(&rdev->wpan_phy.dev);
101
	dev_set_name(&rdev->wpan_phy.dev, "wpan-phy%d", rdev->wpan_phy_idx);
102

103 104
	rdev->wpan_phy.dev.class = &wpan_phy_class;
	rdev->wpan_phy.dev.platform_data = rdev;
105

106
	return &rdev->wpan_phy;
107
}
108
EXPORT_SYMBOL(wpan_phy_new);
109

110
int wpan_phy_register(struct wpan_phy *phy)
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
{
	return device_add(&phy->dev);
}
EXPORT_SYMBOL(wpan_phy_register);

void wpan_phy_unregister(struct wpan_phy *phy)
{
	device_del(&phy->dev);
}
EXPORT_SYMBOL(wpan_phy_unregister);

void wpan_phy_free(struct wpan_phy *phy)
{
	put_device(&phy->dev);
}
EXPORT_SYMBOL(wpan_phy_free);

128 129 130 131 132
void cfg802154_dev_free(struct cfg802154_registered_device *rdev)
{
	kfree(rdev);
}

133 134
static int __init wpan_phy_class_init(void)
{
135
	int rc;
136

A
Alexander Aring 已提交
137
	rc = wpan_phy_sysfs_init();
138 139 140 141 142 143 144 145 146
	if (rc)
		goto err;

	rc = ieee802154_nl_init();
	if (rc)
		goto err_nl;

	return 0;
err_nl:
A
Alexander Aring 已提交
147
	wpan_phy_sysfs_exit();
148 149
err:
	return rc;
150
}
151
subsys_initcall(wpan_phy_class_init);
152 153 154

static void __exit wpan_phy_class_exit(void)
{
155
	ieee802154_nl_exit();
A
Alexander Aring 已提交
156
	wpan_phy_sysfs_exit();
157 158 159 160
}
module_exit(wpan_phy_class_exit);

MODULE_LICENSE("GPL v2");
161 162
MODULE_DESCRIPTION("IEEE 802.15.4 configuration interface");
MODULE_AUTHOR("Dmitry Eremin-Solenikov");
163