From 53219879c82847e6fc6c25934a2b10d671c6f297 Mon Sep 17 00:00:00 2001 From: Oron Peled Date: Sun, 14 Oct 2012 16:20:46 +0200 Subject: [PATCH] dahdi: sysfs: a channel bus (not usefull yet) * Added minimal infrastructure: - A 'chan_device' member to struct dahdi_chan - An empty 'device_attribute' array - A 'bus_type' with its methods - A 'device_driver' with its methods - Initialization/Cleanup code Signed-off-by: Oron Peled --- drivers/dahdi/dahdi-sysfs-chan.c | 96 +++++++++++++++++++++++++++++++- include/dahdi/kernel.h | 3 + 2 files changed, 98 insertions(+), 1 deletion(-) diff --git a/drivers/dahdi/dahdi-sysfs-chan.c b/drivers/dahdi/dahdi-sysfs-chan.c index 88ab08e..b11aac1 100644 --- a/drivers/dahdi/dahdi-sysfs-chan.c +++ b/drivers/dahdi/dahdi-sysfs-chan.c @@ -38,6 +38,72 @@ static struct class *dahdi_class; + +/* + * Flags to remember what initializations already + * succeeded. + */ +static struct { + int channel_driver:1; + int channels_bus:1; +} should_cleanup; + +static struct device_attribute chan_dev_attrs[] = { + __ATTR_NULL, +}; + +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 +}; + int chan_sysfs_create(struct dahdi_chan *chan) { char chan_name[32]; @@ -187,17 +253,45 @@ static void sysfs_channels_cleanup(void) class_destroy(dahdi_class); dahdi_class = NULL; } + 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; + } } int __init dahdi_sysfs_chan_init(const struct file_operations *fops) { int res = 0; + 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; + 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", - __func__, res); + __func__, res); goto cleanup; } res = fixed_devfiles_create(); diff --git a/include/dahdi/kernel.h b/include/dahdi/kernel.h index 65dfd89..0643add 100644 --- a/include/dahdi/kernel.h +++ b/include/dahdi/kernel.h @@ -40,6 +40,7 @@ #include #include #include +#include #include #include @@ -605,6 +606,8 @@ struct dahdi_chan { #else unsigned char *lin2x; #endif + struct device chan_device; /*!< Kernel object for this chan */ +#define dev_to_chan(dev) container_of(dev, struct dahdi_chan, chan_device) }; #ifdef CONFIG_DAHDI_NET