2012-03-22 02:56:05 +08:00
|
|
|
/* dahdi-sysfs-chan.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011-2012, Xorcom
|
|
|
|
* Copyright (C) 2011-2012, Digium, Inc.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* See http://www.asterisk.org for more information about
|
|
|
|
* the Asterisk project. Please do not directly contact
|
|
|
|
* any of the maintainers of this project for assistance;
|
|
|
|
* the project provides a web site, mailing lists and IRC
|
|
|
|
* channels for your use.
|
|
|
|
*
|
|
|
|
* This program is free software, distributed under the terms of
|
|
|
|
* the GNU General Public License Version 2 as published by the
|
|
|
|
* Free Software Foundation. See the LICENSE file included with
|
|
|
|
* this program for more details.
|
|
|
|
*/
|
|
|
|
|
2012-02-22 20:11:48 +08:00
|
|
|
#include <linux/version.h>
|
|
|
|
|
|
|
|
#define DAHDI_PRINK_MACROS_USE_debug
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <dahdi/kernel.h>
|
|
|
|
#include "dahdi.h"
|
|
|
|
#include "dahdi-sysfs.h"
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
/* shortcuts, for code readability */
|
2012-02-22 20:11:48 +08:00
|
|
|
#define MAKE_DAHDI_DEV(num, name) \
|
|
|
|
CLASS_DEV_CREATE(dahdi_class, MKDEV(DAHDI_MAJOR, num), NULL, name)
|
|
|
|
#define DEL_DAHDI_DEV(num) \
|
|
|
|
CLASS_DEV_DESTROY(dahdi_class, MKDEV(DAHDI_MAJOR, num))
|
|
|
|
|
|
|
|
static struct class *dahdi_class;
|
|
|
|
|
2012-10-14 22:20:47 +08:00
|
|
|
static dev_t dahdi_channels_devt; /*!< Device number of first channel */
|
|
|
|
static struct cdev dahdi_channels_cdev; /*!< Channels chardev's */
|
2012-10-14 22:20:46 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Flags to remember what initializations already
|
|
|
|
* succeeded.
|
|
|
|
*/
|
|
|
|
static struct {
|
|
|
|
int channel_driver:1;
|
|
|
|
int channels_bus:1;
|
2012-10-14 22:20:47 +08:00
|
|
|
int cdev:1;
|
2012-10-14 22:20:46 +08:00
|
|
|
} should_cleanup;
|
|
|
|
|
2012-10-14 22:20:49 +08:00
|
|
|
#define chan_attr(field, format_string) \
|
|
|
|
static BUS_ATTR_READER(field##_show, dev, buf) \
|
|
|
|
{ \
|
|
|
|
struct dahdi_chan *chan; \
|
|
|
|
\
|
|
|
|
chan = dev_to_chan(dev); \
|
|
|
|
return sprintf(buf, format_string, chan->field); \
|
|
|
|
}
|
|
|
|
|
|
|
|
chan_attr(name, "%s\n");
|
|
|
|
chan_attr(channo, "%d\n");
|
|
|
|
chan_attr(chanpos, "%d\n");
|
|
|
|
chan_attr(sigcap, "0x%x\n");
|
|
|
|
chan_attr(blocksize, "%d\n");
|
|
|
|
#ifdef OPTIMIZE_CHANMUTE
|
|
|
|
chan_attr(chanmute, "%d\n");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static BUS_ATTR_READER(sig_show, dev, buf)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
return sprintf(buf, "%s\n", sigstr(chan->sig));
|
|
|
|
}
|
|
|
|
|
|
|
|
static BUS_ATTR_READER(in_use_show, dev, buf)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
return sprintf(buf, "%d\n", test_bit(DAHDI_FLAGBIT_OPEN, &chan->flags));
|
|
|
|
}
|
|
|
|
|
|
|
|
static BUS_ATTR_READER(alarms_show, dev, buf)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
len = fill_alarm_string(buf, PAGE_SIZE, chan->chan_alarms);
|
|
|
|
buf[len++] = '\n';
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-14 22:20:46 +08:00
|
|
|
static struct device_attribute chan_dev_attrs[] = {
|
2012-10-14 22:20:49 +08:00
|
|
|
__ATTR_RO(name),
|
|
|
|
__ATTR_RO(channo),
|
|
|
|
__ATTR_RO(chanpos),
|
|
|
|
__ATTR_RO(sig),
|
|
|
|
__ATTR_RO(sigcap),
|
|
|
|
__ATTR_RO(alarms),
|
|
|
|
__ATTR_RO(blocksize),
|
|
|
|
#ifdef OPTIMIZE_CHANMUTE
|
|
|
|
__ATTR_RO(chanmute),
|
|
|
|
#endif
|
|
|
|
__ATTR_RO(in_use),
|
|
|
|
__ATTR_NULL,
|
2012-10-14 22:20:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static void chan_release(struct device *dev)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
BUG_ON(!dev);
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
chan_dbg(DEVICES, chan, "SYSFS\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static int chan_match(struct device *dev, struct device_driver *driver)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
chan_dbg(DEVICES, chan, "SYSFS\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct bus_type chan_bus_type = {
|
|
|
|
.name = "dahdi_channels",
|
|
|
|
.match = chan_match,
|
|
|
|
.dev_attrs = chan_dev_attrs,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int chan_probe(struct device *dev)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
chan_dbg(DEVICES, chan, "SYSFS\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int chan_remove(struct device *dev)
|
|
|
|
{
|
|
|
|
struct dahdi_chan *chan;
|
|
|
|
|
|
|
|
chan = dev_to_chan(dev);
|
|
|
|
chan_dbg(DEVICES, chan, "SYSFS\n");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct device_driver chan_driver = {
|
|
|
|
.name = "dahdi",
|
|
|
|
.bus = &chan_bus_type,
|
|
|
|
#ifndef OLD_HOTPLUG_SUPPORT
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
#endif
|
|
|
|
.probe = chan_probe,
|
|
|
|
.remove = chan_remove
|
|
|
|
};
|
|
|
|
|
2012-02-22 20:11:48 +08:00
|
|
|
int chan_sysfs_create(struct dahdi_chan *chan)
|
|
|
|
{
|
2012-10-14 22:20:48 +08:00
|
|
|
struct device *dev;
|
|
|
|
struct dahdi_span *span;
|
|
|
|
int res;
|
|
|
|
dev_t devt;
|
2012-02-22 20:11:48 +08:00
|
|
|
|
2012-10-14 22:20:48 +08:00
|
|
|
chan_dbg(DEVICES, chan, "Creating channel %d\n", chan->channo);
|
2012-02-22 20:11:48 +08:00
|
|
|
if (test_bit(DAHDI_FLAGBIT_DEVFILE, &chan->flags))
|
|
|
|
return 0;
|
2012-10-14 22:20:48 +08:00
|
|
|
span = chan->span;
|
|
|
|
devt = MKDEV(MAJOR(dahdi_channels_devt), chan->channo);
|
|
|
|
dev = &chan->chan_device;
|
|
|
|
dev->devt = devt;
|
|
|
|
dev->class = dahdi_class;
|
|
|
|
dev->bus = &chan_bus_type;
|
|
|
|
dev->parent = span->span_device;
|
|
|
|
/*
|
|
|
|
* FIXME: the name cannot be longer than KOBJ_NAME_LEN
|
|
|
|
*/
|
|
|
|
dev_set_name(dev, "dahdi!channels!%d!%d", span->spanno, chan->chanpos);
|
|
|
|
dev_set_drvdata(dev, chan);
|
|
|
|
dev->release = chan_release;
|
|
|
|
res = device_register(dev);
|
|
|
|
if (res) {
|
|
|
|
chan_err(chan, "%s: device_register failed: %d\n",
|
|
|
|
__func__, res);
|
|
|
|
dev_set_drvdata(dev, NULL);
|
2012-02-22 20:11:48 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
set_bit(DAHDI_FLAGBIT_DEVFILE, &chan->flags);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void chan_sysfs_remove(struct dahdi_chan *chan)
|
|
|
|
{
|
2012-10-14 22:20:49 +08:00
|
|
|
struct device *dev = &chan->chan_device;
|
2012-10-14 22:20:48 +08:00
|
|
|
|
|
|
|
chan_dbg(DEVICES, chan, "Destroying channel %d\n", chan->channo);
|
|
|
|
if (!dev_get_drvdata(dev))
|
|
|
|
return;
|
2012-02-22 20:11:48 +08:00
|
|
|
if (!test_bit(DAHDI_FLAGBIT_DEVFILE, &chan->flags))
|
|
|
|
return;
|
2012-10-14 22:20:48 +08:00
|
|
|
dev = &chan->chan_device;
|
|
|
|
BUG_ON(dev_get_drvdata(dev) != chan);
|
|
|
|
device_unregister(dev);
|
|
|
|
dev_set_drvdata(dev, NULL);
|
|
|
|
/* FIXME: should have been done earlier in dahdi_chan_unreg */
|
|
|
|
chan->channo = -1;
|
2012-02-22 20:11:48 +08:00
|
|
|
clear_bit(DAHDI_FLAGBIT_DEVFILE, &chan->flags);
|
|
|
|
}
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
/*
|
|
|
|
* Used by dahdi_transcode.c
|
|
|
|
*/
|
2012-02-22 20:11:48 +08:00
|
|
|
int dahdi_register_chardev(struct dahdi_chardev *dev)
|
|
|
|
{
|
|
|
|
static const char *DAHDI_STRING = "dahdi!";
|
|
|
|
char *udevname;
|
|
|
|
|
|
|
|
udevname = kzalloc(strlen(dev->name) + sizeof(DAHDI_STRING) + 1,
|
2012-10-14 22:20:49 +08:00
|
|
|
GFP_KERNEL);
|
2012-02-22 20:11:48 +08:00
|
|
|
if (!udevname)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
strcpy(udevname, DAHDI_STRING);
|
|
|
|
strcat(udevname, dev->name);
|
2012-02-22 20:12:10 +08:00
|
|
|
MAKE_DAHDI_DEV(dev->minor, udevname);
|
2012-02-22 20:11:48 +08:00
|
|
|
kfree(udevname);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dahdi_register_chardev);
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
/*
|
|
|
|
* Used by dahdi_transcode.c
|
|
|
|
*/
|
2012-02-22 20:11:48 +08:00
|
|
|
int dahdi_unregister_chardev(struct dahdi_chardev *dev)
|
|
|
|
{
|
2012-02-22 20:12:10 +08:00
|
|
|
DEL_DAHDI_DEV(dev->minor);
|
2012-02-22 20:11:48 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dahdi_unregister_chardev);
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
/*--------- Sysfs Device handling ----*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Describe fixed device files and maintain their
|
|
|
|
* pointer so fixed_devfiles_remove() can always be called
|
|
|
|
* and work cleanly
|
|
|
|
*/
|
2012-02-22 20:11:48 +08:00
|
|
|
static struct {
|
2012-02-22 20:12:10 +08:00
|
|
|
int minor;
|
|
|
|
char *name;
|
|
|
|
void *dev; /* FIXME: wrong type because of old kernels */
|
|
|
|
} fixed_minors[] = {
|
|
|
|
{ DAHDI_CTL, "dahdi!ctl", },
|
|
|
|
{ DAHDI_TIMER, "dahdi!timer", },
|
|
|
|
{ DAHDI_CHANNEL, "dahdi!channel",},
|
|
|
|
{ DAHDI_PSEUDO, "dahdi!pseudo", },
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Removes /dev/dahdi/{ctl,timer,channel,pseudo}
|
|
|
|
*
|
|
|
|
* It is safe to call it during initialization error handling,
|
|
|
|
* as it skips non existing objects.
|
|
|
|
*/
|
|
|
|
static void fixed_devfiles_remove(void)
|
|
|
|
{
|
|
|
|
int i;
|
2012-02-22 20:11:48 +08:00
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
if (!dahdi_class)
|
|
|
|
return;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(fixed_minors); i++) {
|
|
|
|
void *d = fixed_minors[i].dev;
|
|
|
|
if (d && !IS_ERR(d))
|
|
|
|
dahdi_dbg(DEVICES, "Removing fixed device file %s\n",
|
|
|
|
fixed_minors[i].name);
|
|
|
|
DEL_DAHDI_DEV(fixed_minors[i].minor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates /dev/dahdi/{ctl,timer,channel,pseudo}
|
|
|
|
*/
|
|
|
|
static int fixed_devfiles_create(void)
|
2012-02-22 20:11:48 +08:00
|
|
|
{
|
2012-02-22 20:12:10 +08:00
|
|
|
int i;
|
2012-02-22 20:11:48 +08:00
|
|
|
int res = 0;
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
if (!dahdi_class) {
|
|
|
|
dahdi_err("%s: dahdi_class is not initialized yet!\n",
|
|
|
|
__func__);
|
|
|
|
res = -ENODEV;
|
2012-02-22 20:11:48 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2012-02-22 20:12:10 +08:00
|
|
|
for (i = 0; i < ARRAY_SIZE(fixed_minors); i++) {
|
|
|
|
char *name = fixed_minors[i].name;
|
|
|
|
int minor = fixed_minors[i].minor;
|
|
|
|
void *dummy;
|
|
|
|
|
|
|
|
dahdi_dbg(DEVICES, "Making fixed device file %s\n", name);
|
|
|
|
dummy = (void *)MAKE_DAHDI_DEV(minor, name);
|
|
|
|
if (IS_ERR(dummy)) {
|
|
|
|
int res = PTR_ERR(dummy);
|
|
|
|
|
|
|
|
dahdi_err("%s: failed (%d: %s). Error: %d\n",
|
|
|
|
__func__, minor, name, res);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
fixed_minors[i].dev = dummy;
|
2012-02-22 20:11:48 +08:00
|
|
|
}
|
2012-02-22 20:12:10 +08:00
|
|
|
return 0;
|
|
|
|
cleanup:
|
|
|
|
fixed_devfiles_remove();
|
|
|
|
return res;
|
|
|
|
}
|
2012-02-22 20:11:48 +08:00
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
/*
|
|
|
|
* Called during driver unload and while handling any error during
|
|
|
|
* driver load.
|
|
|
|
* Always clean any (and only) objects that were initialized (invariant)
|
|
|
|
*/
|
|
|
|
static void sysfs_channels_cleanup(void)
|
|
|
|
{
|
2012-10-14 22:20:47 +08:00
|
|
|
if (should_cleanup.cdev) {
|
|
|
|
dahdi_dbg(DEVICES, "removing channels cdev\n");
|
|
|
|
cdev_del(&dahdi_channels_cdev);
|
|
|
|
should_cleanup.cdev = 0;
|
|
|
|
}
|
|
|
|
if (dahdi_channels_devt) {
|
|
|
|
dahdi_dbg(DEVICES, "unregistering chrdev_region\n");
|
|
|
|
unregister_chrdev_region(dahdi_channels_devt,
|
|
|
|
DAHDI_MAX_CHANNELS);
|
|
|
|
}
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
fixed_devfiles_remove();
|
|
|
|
if (dahdi_class) {
|
|
|
|
dahdi_dbg(DEVICES, "Destroying DAHDI class:\n");
|
|
|
|
class_destroy(dahdi_class);
|
|
|
|
dahdi_class = NULL;
|
2012-02-22 20:11:48 +08:00
|
|
|
}
|
2012-10-14 22:20:46 +08:00
|
|
|
if (should_cleanup.channel_driver) {
|
|
|
|
dahdi_dbg(DEVICES, "Removing channel driver\n");
|
|
|
|
driver_unregister(&chan_driver);
|
|
|
|
should_cleanup.channel_driver = 0;
|
|
|
|
}
|
|
|
|
if (should_cleanup.channels_bus) {
|
|
|
|
dahdi_dbg(DEVICES, "Removing channels bus\n");
|
|
|
|
bus_unregister(&chan_bus_type);
|
|
|
|
should_cleanup.channels_bus = 0;
|
|
|
|
}
|
2012-02-22 20:12:10 +08:00
|
|
|
}
|
2012-02-22 20:11:48 +08:00
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
int __init dahdi_sysfs_chan_init(const struct file_operations *fops)
|
|
|
|
{
|
|
|
|
int res = 0;
|
2012-02-22 20:11:48 +08:00
|
|
|
|
2012-10-14 22:20:46 +08:00
|
|
|
dahdi_dbg(DEVICES, "Registering channels bus\n");
|
|
|
|
res = bus_register(&chan_bus_type);
|
|
|
|
if (res) {
|
|
|
|
dahdi_err("%s: bus_register(%s) failed. Error number %d\n",
|
|
|
|
__func__, chan_bus_type.name, res);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
should_cleanup.channels_bus = 1;
|
|
|
|
|
|
|
|
dahdi_dbg(DEVICES, "Registering channel driver\n");
|
|
|
|
res = driver_register(&chan_driver);
|
|
|
|
if (res) {
|
|
|
|
dahdi_err("%s: driver_register(%s) failed. Error number %d",
|
|
|
|
__func__, chan_driver.name, res);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
should_cleanup.channel_driver = 1;
|
|
|
|
|
2012-02-22 20:12:10 +08:00
|
|
|
dahdi_class = class_create(THIS_MODULE, "dahdi");
|
|
|
|
if (IS_ERR(dahdi_class)) {
|
|
|
|
res = PTR_ERR(dahdi_class);
|
|
|
|
dahdi_err("%s: class_create(dahi_chan) failed. Error: %d\n",
|
2012-10-14 22:20:46 +08:00
|
|
|
__func__, res);
|
2012-02-22 20:11:48 +08:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2012-02-22 20:12:10 +08:00
|
|
|
res = fixed_devfiles_create();
|
|
|
|
if (res)
|
|
|
|
goto cleanup;
|
2012-10-14 22:20:47 +08:00
|
|
|
dahdi_dbg(DEVICES, "allocating chrdev_region\n");
|
|
|
|
res = alloc_chrdev_region(&dahdi_channels_devt,
|
|
|
|
0,
|
|
|
|
DAHDI_MAX_CHANNELS,
|
|
|
|
"dahdi_channels");
|
|
|
|
if (res) {
|
|
|
|
dahdi_err("%s: Failed allocating chrdev for %d channels (%d)",
|
|
|
|
__func__, DAHDI_MAX_CHANNELS, res);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
dahdi_dbg(DEVICES, "adding channels cdev\n");
|
|
|
|
res = cdev_add(&dahdi_channels_cdev, dahdi_channels_devt,
|
|
|
|
DAHDI_MAX_CHANNELS);
|
|
|
|
if (res) {
|
|
|
|
dahdi_err("%s: cdev_add() failed (%d)", __func__, res);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
should_cleanup.cdev = 1;
|
2012-02-22 20:11:48 +08:00
|
|
|
return 0;
|
|
|
|
cleanup:
|
2012-02-22 20:12:10 +08:00
|
|
|
sysfs_channels_cleanup();
|
2012-02-22 20:11:48 +08:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dahdi_sysfs_chan_exit(void)
|
|
|
|
{
|
2012-02-22 20:12:10 +08:00
|
|
|
sysfs_channels_cleanup();
|
2012-02-22 20:11:48 +08:00
|
|
|
}
|