unify {de,}mangle_poll(), get rid of kernel-side POLL...
[cris-mirror.git] / include / linux / iio / sw_device.h
blob8642b91a7577e3c444aaadda9cf85acd7b391a69
1 /*
2 * Industrial I/O software device interface
4 * Copyright (c) 2016 Intel Corporation
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
11 #ifndef __IIO_SW_DEVICE
12 #define __IIO_SW_DEVICE
14 #include <linux/module.h>
15 #include <linux/device.h>
16 #include <linux/iio/iio.h>
17 #include <linux/configfs.h>
19 #define module_iio_sw_device_driver(__iio_sw_device_type) \
20 module_driver(__iio_sw_device_type, iio_register_sw_device_type, \
21 iio_unregister_sw_device_type)
23 struct iio_sw_device_ops;
25 struct iio_sw_device_type {
26 const char *name;
27 struct module *owner;
28 const struct iio_sw_device_ops *ops;
29 struct list_head list;
30 struct config_group *group;
33 struct iio_sw_device {
34 struct iio_dev *device;
35 struct iio_sw_device_type *device_type;
36 struct config_group group;
39 struct iio_sw_device_ops {
40 struct iio_sw_device* (*probe)(const char *);
41 int (*remove)(struct iio_sw_device *);
44 static inline
45 struct iio_sw_device *to_iio_sw_device(struct config_item *item)
47 return container_of(to_config_group(item), struct iio_sw_device,
48 group);
51 int iio_register_sw_device_type(struct iio_sw_device_type *dt);
52 void iio_unregister_sw_device_type(struct iio_sw_device_type *dt);
54 struct iio_sw_device *iio_sw_device_create(const char *, const char *);
55 void iio_sw_device_destroy(struct iio_sw_device *);
57 int iio_sw_device_type_configfs_register(struct iio_sw_device_type *dt);
58 void iio_sw_device_type_configfs_unregister(struct iio_sw_device_type *dt);
60 static inline
61 void iio_swd_group_init_type_name(struct iio_sw_device *d,
62 const char *name,
63 const struct config_item_type *type)
65 #if IS_ENABLED(CONFIG_CONFIGFS_FS)
66 config_group_init_type_name(&d->group, name, type);
67 #endif
70 #endif /* __IIO_SW_DEVICE */