1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2016 Jonathan Cameron <jic23@kernel.org>
5 * Based on a mashup of the hrtimer trigger and continuous sampling proposal of
6 * Gregor Boirie <gregor.boirie@parrot.com>
8 * Note this is still rather experimental and may eat babies.
11 * * Protect against connection of devices that 'need' the top half
13 * * Work out how to run top half handlers in this context if it is
14 * safe to do so (timestamp grabbing for example)
16 * Tested against a max1363. Used about 33% cpu for the thread and 20%
17 * for generic_buffer piping to /dev/null. Watermark set at 64 on a 128
18 * element kfifo buffer.
21 #include <linux/kernel.h>
22 #include <linux/module.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/irq_work.h>
26 #include <linux/kthread.h>
27 #include <linux/freezer.h>
29 #include <linux/iio/iio.h>
30 #include <linux/iio/trigger.h>
31 #include <linux/iio/sw_trigger.h>
33 struct iio_loop_info
{
34 struct iio_sw_trigger swt
;
35 struct task_struct
*task
;
38 static const struct config_item_type iio_loop_type
= {
39 .ct_owner
= THIS_MODULE
,
42 static int iio_loop_thread(void *data
)
44 struct iio_trigger
*trig
= data
;
49 iio_trigger_poll_chained(trig
);
50 } while (likely(!kthread_freezable_should_stop(NULL
)));
55 static int iio_loop_trigger_set_state(struct iio_trigger
*trig
, bool state
)
57 struct iio_loop_info
*loop_trig
= iio_trigger_get_drvdata(trig
);
60 loop_trig
->task
= kthread_run(iio_loop_thread
,
62 if (IS_ERR(loop_trig
->task
)) {
64 "failed to create trigger loop thread\n");
65 return PTR_ERR(loop_trig
->task
);
68 kthread_stop(loop_trig
->task
);
74 static const struct iio_trigger_ops iio_loop_trigger_ops
= {
75 .set_trigger_state
= iio_loop_trigger_set_state
,
78 static struct iio_sw_trigger
*iio_trig_loop_probe(const char *name
)
80 struct iio_loop_info
*trig_info
;
83 trig_info
= kzalloc(sizeof(*trig_info
), GFP_KERNEL
);
85 return ERR_PTR(-ENOMEM
);
87 trig_info
->swt
.trigger
= iio_trigger_alloc("%s", name
);
88 if (!trig_info
->swt
.trigger
) {
90 goto err_free_trig_info
;
93 iio_trigger_set_drvdata(trig_info
->swt
.trigger
, trig_info
);
94 trig_info
->swt
.trigger
->ops
= &iio_loop_trigger_ops
;
96 ret
= iio_trigger_register(trig_info
->swt
.trigger
);
98 goto err_free_trigger
;
100 iio_swt_group_init_type_name(&trig_info
->swt
, name
, &iio_loop_type
);
102 return &trig_info
->swt
;
105 iio_trigger_free(trig_info
->swt
.trigger
);
112 static int iio_trig_loop_remove(struct iio_sw_trigger
*swt
)
114 struct iio_loop_info
*trig_info
;
116 trig_info
= iio_trigger_get_drvdata(swt
->trigger
);
118 iio_trigger_unregister(swt
->trigger
);
119 iio_trigger_free(swt
->trigger
);
125 static const struct iio_sw_trigger_ops iio_trig_loop_ops
= {
126 .probe
= iio_trig_loop_probe
,
127 .remove
= iio_trig_loop_remove
,
130 static struct iio_sw_trigger_type iio_trig_loop
= {
132 .owner
= THIS_MODULE
,
133 .ops
= &iio_trig_loop_ops
,
136 module_iio_sw_trigger_driver(iio_trig_loop
);
138 MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
139 MODULE_DESCRIPTION("Loop based trigger for the iio subsystem");
140 MODULE_LICENSE("GPL v2");
141 MODULE_ALIAS("platform:iio-trig-loop");