2 * Copyright 2016 Jonathan Cameron <jic23@kernel.org>
4 * Licensed under the GPL-2.
6 * Based on a mashup of the hrtimer trigger and continuous sampling proposal of
7 * Gregor Boirie <gregor.boirie@parrot.com>
9 * Note this is still rather experimental and may eat babies.
12 * * Protect against connection of devices that 'need' the top half
14 * * Work out how to run top half handlers in this context if it is
15 * safe to do so (timestamp grabbing for example)
17 * Tested against a max1363. Used about 33% cpu for the thread and 20%
18 * for generic_buffer piping to /dev/null. Watermark set at 64 on a 128
19 * element kfifo buffer.
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/platform_device.h>
25 #include <linux/slab.h>
26 #include <linux/irq_work.h>
27 #include <linux/kthread.h>
28 #include <linux/freezer.h>
30 #include <linux/iio/iio.h>
31 #include <linux/iio/trigger.h>
32 #include <linux/iio/sw_trigger.h>
34 struct iio_loop_info {
35 struct iio_sw_trigger swt;
36 struct task_struct *task;
39 static struct config_item_type iio_loop_type = {
40 .ct_owner = THIS_MODULE,
43 static int iio_loop_thread(void *data)
45 struct iio_trigger *trig = data;
50 iio_trigger_poll_chained(trig);
51 } while (likely(!kthread_freezable_should_stop(NULL)));
56 static int iio_loop_trigger_set_state(struct iio_trigger *trig, bool state)
58 struct iio_loop_info *loop_trig = iio_trigger_get_drvdata(trig);
61 loop_trig->task = kthread_run(iio_loop_thread,
63 if (unlikely(IS_ERR(loop_trig->task))) {
65 "failed to create trigger loop thread\n");
66 return PTR_ERR(loop_trig->task);
69 kthread_stop(loop_trig->task);
75 static const struct iio_trigger_ops iio_loop_trigger_ops = {
76 .set_trigger_state = iio_loop_trigger_set_state,
80 static struct iio_sw_trigger *iio_trig_loop_probe(const char *name)
82 struct iio_loop_info *trig_info;
85 trig_info = kzalloc(sizeof(*trig_info), GFP_KERNEL);
87 return ERR_PTR(-ENOMEM);
89 trig_info->swt.trigger = iio_trigger_alloc("%s", name);
90 if (!trig_info->swt.trigger) {
92 goto err_free_trig_info;
95 iio_trigger_set_drvdata(trig_info->swt.trigger, trig_info);
96 trig_info->swt.trigger->ops = &iio_loop_trigger_ops;
98 ret = iio_trigger_register(trig_info->swt.trigger);
100 goto err_free_trigger;
102 iio_swt_group_init_type_name(&trig_info->swt, name, &iio_loop_type);
104 return &trig_info->swt;
107 iio_trigger_free(trig_info->swt.trigger);
114 static int iio_trig_loop_remove(struct iio_sw_trigger *swt)
116 struct iio_loop_info *trig_info;
118 trig_info = iio_trigger_get_drvdata(swt->trigger);
120 iio_trigger_unregister(swt->trigger);
121 iio_trigger_free(swt->trigger);
127 static const struct iio_sw_trigger_ops iio_trig_loop_ops = {
128 .probe = iio_trig_loop_probe,
129 .remove = iio_trig_loop_remove,
132 static struct iio_sw_trigger_type iio_trig_loop = {
134 .owner = THIS_MODULE,
135 .ops = &iio_trig_loop_ops,
138 module_iio_sw_trigger_driver(iio_trig_loop);
140 MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
141 MODULE_DESCRIPTION("Loop based trigger for the iio subsystem");
142 MODULE_LICENSE("GPL v2");
143 MODULE_ALIAS("platform:iio-trig-loop");