WIP FPC-III support
[linux/fpc-iii.git] / drivers / iio / industrialio-trigger.c
blobea3c9859b2589e6b7e7aee8268747f3fc92a6a29
1 // SPDX-License-Identifier: GPL-2.0-only
2 /* The industrial I/O core, trigger handling functions
4 * Copyright (c) 2008 Jonathan Cameron
5 */
7 #include <linux/kernel.h>
8 #include <linux/idr.h>
9 #include <linux/err.h>
10 #include <linux/device.h>
11 #include <linux/interrupt.h>
12 #include <linux/list.h>
13 #include <linux/slab.h>
15 #include <linux/iio/iio.h>
16 #include <linux/iio/trigger.h>
17 #include "iio_core.h"
18 #include "iio_core_trigger.h"
19 #include <linux/iio/trigger_consumer.h>
21 /* RFC - Question of approach
22 * Make the common case (single sensor single trigger)
23 * simple by starting trigger capture from when first sensors
24 * is added.
26 * Complex simultaneous start requires use of 'hold' functionality
27 * of the trigger. (not implemented)
29 * Any other suggestions?
32 static DEFINE_IDA(iio_trigger_ida);
34 /* Single list of all available triggers */
35 static LIST_HEAD(iio_trigger_list);
36 static DEFINE_MUTEX(iio_trigger_list_lock);
38 /**
39 * iio_trigger_read_name() - retrieve useful identifying name
40 * @dev: device associated with the iio_trigger
41 * @attr: pointer to the device_attribute structure that is
42 * being processed
43 * @buf: buffer to print the name into
45 * Return: a negative number on failure or the number of written
46 * characters on success.
48 static ssize_t iio_trigger_read_name(struct device *dev,
49 struct device_attribute *attr,
50 char *buf)
52 struct iio_trigger *trig = to_iio_trigger(dev);
53 return sprintf(buf, "%s\n", trig->name);
56 static DEVICE_ATTR(name, S_IRUGO, iio_trigger_read_name, NULL);
58 static struct attribute *iio_trig_dev_attrs[] = {
59 &dev_attr_name.attr,
60 NULL,
62 ATTRIBUTE_GROUPS(iio_trig_dev);
64 static struct iio_trigger *__iio_trigger_find_by_name(const char *name);
66 int __iio_trigger_register(struct iio_trigger *trig_info,
67 struct module *this_mod)
69 int ret;
71 trig_info->owner = this_mod;
73 trig_info->id = ida_simple_get(&iio_trigger_ida, 0, 0, GFP_KERNEL);
74 if (trig_info->id < 0)
75 return trig_info->id;
77 /* Set the name used for the sysfs directory etc */
78 dev_set_name(&trig_info->dev, "trigger%ld",
79 (unsigned long) trig_info->id);
81 ret = device_add(&trig_info->dev);
82 if (ret)
83 goto error_unregister_id;
85 /* Add to list of available triggers held by the IIO core */
86 mutex_lock(&iio_trigger_list_lock);
87 if (__iio_trigger_find_by_name(trig_info->name)) {
88 pr_err("Duplicate trigger name '%s'\n", trig_info->name);
89 ret = -EEXIST;
90 goto error_device_del;
92 list_add_tail(&trig_info->list, &iio_trigger_list);
93 mutex_unlock(&iio_trigger_list_lock);
95 return 0;
97 error_device_del:
98 mutex_unlock(&iio_trigger_list_lock);
99 device_del(&trig_info->dev);
100 error_unregister_id:
101 ida_simple_remove(&iio_trigger_ida, trig_info->id);
102 return ret;
104 EXPORT_SYMBOL(__iio_trigger_register);
106 void iio_trigger_unregister(struct iio_trigger *trig_info)
108 mutex_lock(&iio_trigger_list_lock);
109 list_del(&trig_info->list);
110 mutex_unlock(&iio_trigger_list_lock);
112 ida_simple_remove(&iio_trigger_ida, trig_info->id);
113 /* Possible issue in here */
114 device_del(&trig_info->dev);
116 EXPORT_SYMBOL(iio_trigger_unregister);
118 int iio_trigger_set_immutable(struct iio_dev *indio_dev, struct iio_trigger *trig)
120 if (!indio_dev || !trig)
121 return -EINVAL;
123 mutex_lock(&indio_dev->mlock);
124 WARN_ON(indio_dev->trig_readonly);
126 indio_dev->trig = iio_trigger_get(trig);
127 indio_dev->trig_readonly = true;
128 mutex_unlock(&indio_dev->mlock);
130 return 0;
132 EXPORT_SYMBOL(iio_trigger_set_immutable);
134 /* Search for trigger by name, assuming iio_trigger_list_lock held */
135 static struct iio_trigger *__iio_trigger_find_by_name(const char *name)
137 struct iio_trigger *iter;
139 list_for_each_entry(iter, &iio_trigger_list, list)
140 if (!strcmp(iter->name, name))
141 return iter;
143 return NULL;
146 static struct iio_trigger *iio_trigger_acquire_by_name(const char *name)
148 struct iio_trigger *trig = NULL, *iter;
150 mutex_lock(&iio_trigger_list_lock);
151 list_for_each_entry(iter, &iio_trigger_list, list)
152 if (sysfs_streq(iter->name, name)) {
153 trig = iter;
154 iio_trigger_get(trig);
155 break;
157 mutex_unlock(&iio_trigger_list_lock);
159 return trig;
162 void iio_trigger_poll(struct iio_trigger *trig)
164 int i;
166 if (!atomic_read(&trig->use_count)) {
167 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
169 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
170 if (trig->subirqs[i].enabled)
171 generic_handle_irq(trig->subirq_base + i);
172 else
173 iio_trigger_notify_done(trig);
177 EXPORT_SYMBOL(iio_trigger_poll);
179 irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
181 iio_trigger_poll(private);
182 return IRQ_HANDLED;
184 EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
186 void iio_trigger_poll_chained(struct iio_trigger *trig)
188 int i;
190 if (!atomic_read(&trig->use_count)) {
191 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
193 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
194 if (trig->subirqs[i].enabled)
195 handle_nested_irq(trig->subirq_base + i);
196 else
197 iio_trigger_notify_done(trig);
201 EXPORT_SYMBOL(iio_trigger_poll_chained);
203 void iio_trigger_notify_done(struct iio_trigger *trig)
205 if (atomic_dec_and_test(&trig->use_count) && trig->ops &&
206 trig->ops->reenable)
207 trig->ops->reenable(trig);
209 EXPORT_SYMBOL(iio_trigger_notify_done);
211 /* Trigger Consumer related functions */
212 static int iio_trigger_get_irq(struct iio_trigger *trig)
214 int ret;
215 mutex_lock(&trig->pool_lock);
216 ret = bitmap_find_free_region(trig->pool,
217 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
218 ilog2(1));
219 mutex_unlock(&trig->pool_lock);
220 if (ret >= 0)
221 ret += trig->subirq_base;
223 return ret;
226 static void iio_trigger_put_irq(struct iio_trigger *trig, int irq)
228 mutex_lock(&trig->pool_lock);
229 clear_bit(irq - trig->subirq_base, trig->pool);
230 mutex_unlock(&trig->pool_lock);
233 /* Complexity in here. With certain triggers (datardy) an acknowledgement
234 * may be needed if the pollfuncs do not include the data read for the
235 * triggering device.
236 * This is not currently handled. Alternative of not enabling trigger unless
237 * the relevant function is in there may be the best option.
239 /* Worth protecting against double additions? */
240 int iio_trigger_attach_poll_func(struct iio_trigger *trig,
241 struct iio_poll_func *pf)
243 int ret = 0;
244 bool notinuse
245 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
247 /* Prevent the module from being removed whilst attached to a trigger */
248 __module_get(pf->indio_dev->driver_module);
250 /* Get irq number */
251 pf->irq = iio_trigger_get_irq(trig);
252 if (pf->irq < 0) {
253 pr_err("Could not find an available irq for trigger %s, CONFIG_IIO_CONSUMERS_PER_TRIGGER=%d limit might be exceeded\n",
254 trig->name, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
255 goto out_put_module;
258 /* Request irq */
259 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
260 pf->type, pf->name,
261 pf);
262 if (ret < 0)
263 goto out_put_irq;
265 /* Enable trigger in driver */
266 if (trig->ops && trig->ops->set_trigger_state && notinuse) {
267 ret = trig->ops->set_trigger_state(trig, true);
268 if (ret < 0)
269 goto out_free_irq;
273 * Check if we just registered to our own trigger: we determine that
274 * this is the case if the IIO device and the trigger device share the
275 * same parent device.
277 if (pf->indio_dev->dev.parent == trig->dev.parent)
278 trig->attached_own_device = true;
280 return ret;
282 out_free_irq:
283 free_irq(pf->irq, pf);
284 out_put_irq:
285 iio_trigger_put_irq(trig, pf->irq);
286 out_put_module:
287 module_put(pf->indio_dev->driver_module);
288 return ret;
291 int iio_trigger_detach_poll_func(struct iio_trigger *trig,
292 struct iio_poll_func *pf)
294 int ret = 0;
295 bool no_other_users
296 = (bitmap_weight(trig->pool,
297 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
298 == 1);
299 if (trig->ops && trig->ops->set_trigger_state && no_other_users) {
300 ret = trig->ops->set_trigger_state(trig, false);
301 if (ret)
302 return ret;
304 if (pf->indio_dev->dev.parent == trig->dev.parent)
305 trig->attached_own_device = false;
306 iio_trigger_put_irq(trig, pf->irq);
307 free_irq(pf->irq, pf);
308 module_put(pf->indio_dev->driver_module);
310 return ret;
313 irqreturn_t iio_pollfunc_store_time(int irq, void *p)
315 struct iio_poll_func *pf = p;
316 pf->timestamp = iio_get_time_ns(pf->indio_dev);
317 return IRQ_WAKE_THREAD;
319 EXPORT_SYMBOL(iio_pollfunc_store_time);
321 struct iio_poll_func
322 *iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p),
323 irqreturn_t (*thread)(int irq, void *p),
324 int type,
325 struct iio_dev *indio_dev,
326 const char *fmt,
327 ...)
329 va_list vargs;
330 struct iio_poll_func *pf;
332 pf = kmalloc(sizeof *pf, GFP_KERNEL);
333 if (pf == NULL)
334 return NULL;
335 va_start(vargs, fmt);
336 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
337 va_end(vargs);
338 if (pf->name == NULL) {
339 kfree(pf);
340 return NULL;
342 pf->h = h;
343 pf->thread = thread;
344 pf->type = type;
345 pf->indio_dev = indio_dev;
347 return pf;
349 EXPORT_SYMBOL_GPL(iio_alloc_pollfunc);
351 void iio_dealloc_pollfunc(struct iio_poll_func *pf)
353 kfree(pf->name);
354 kfree(pf);
356 EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);
359 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
360 * @dev: device associated with an industrial I/O device
361 * @attr: pointer to the device_attribute structure that
362 * is being processed
363 * @buf: buffer where the current trigger name will be printed into
365 * For trigger consumers the current_trigger interface allows the trigger
366 * used by the device to be queried.
368 * Return: a negative number on failure, the number of characters written
369 * on success or 0 if no trigger is available
371 static ssize_t iio_trigger_read_current(struct device *dev,
372 struct device_attribute *attr,
373 char *buf)
375 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
377 if (indio_dev->trig)
378 return sprintf(buf, "%s\n", indio_dev->trig->name);
379 return 0;
383 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
384 * @dev: device associated with an industrial I/O device
385 * @attr: device attribute that is being processed
386 * @buf: string buffer that holds the name of the trigger
387 * @len: length of the trigger name held by buf
389 * For trigger consumers the current_trigger interface allows the trigger
390 * used for this device to be specified at run time based on the trigger's
391 * name.
393 * Return: negative error code on failure or length of the buffer
394 * on success
396 static ssize_t iio_trigger_write_current(struct device *dev,
397 struct device_attribute *attr,
398 const char *buf,
399 size_t len)
401 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
402 struct iio_trigger *oldtrig = indio_dev->trig;
403 struct iio_trigger *trig;
404 int ret;
406 mutex_lock(&indio_dev->mlock);
407 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
408 mutex_unlock(&indio_dev->mlock);
409 return -EBUSY;
411 if (indio_dev->trig_readonly) {
412 mutex_unlock(&indio_dev->mlock);
413 return -EPERM;
415 mutex_unlock(&indio_dev->mlock);
417 trig = iio_trigger_acquire_by_name(buf);
418 if (oldtrig == trig) {
419 ret = len;
420 goto out_trigger_put;
423 if (trig && indio_dev->info->validate_trigger) {
424 ret = indio_dev->info->validate_trigger(indio_dev, trig);
425 if (ret)
426 goto out_trigger_put;
429 if (trig && trig->ops && trig->ops->validate_device) {
430 ret = trig->ops->validate_device(trig, indio_dev);
431 if (ret)
432 goto out_trigger_put;
435 indio_dev->trig = trig;
437 if (oldtrig) {
438 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
439 iio_trigger_detach_poll_func(oldtrig,
440 indio_dev->pollfunc_event);
441 iio_trigger_put(oldtrig);
443 if (indio_dev->trig) {
444 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
445 iio_trigger_attach_poll_func(indio_dev->trig,
446 indio_dev->pollfunc_event);
449 return len;
451 out_trigger_put:
452 if (trig)
453 iio_trigger_put(trig);
454 return ret;
457 static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
458 iio_trigger_read_current,
459 iio_trigger_write_current);
461 static struct attribute *iio_trigger_consumer_attrs[] = {
462 &dev_attr_current_trigger.attr,
463 NULL,
466 static const struct attribute_group iio_trigger_consumer_attr_group = {
467 .name = "trigger",
468 .attrs = iio_trigger_consumer_attrs,
471 static void iio_trig_release(struct device *device)
473 struct iio_trigger *trig = to_iio_trigger(device);
474 int i;
476 if (trig->subirq_base) {
477 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
478 irq_modify_status(trig->subirq_base + i,
479 IRQ_NOAUTOEN,
480 IRQ_NOREQUEST | IRQ_NOPROBE);
481 irq_set_chip(trig->subirq_base + i,
482 NULL);
483 irq_set_handler(trig->subirq_base + i,
484 NULL);
487 irq_free_descs(trig->subirq_base,
488 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
490 kfree(trig->name);
491 kfree(trig);
494 static const struct device_type iio_trig_type = {
495 .release = iio_trig_release,
496 .groups = iio_trig_dev_groups,
499 static void iio_trig_subirqmask(struct irq_data *d)
501 struct irq_chip *chip = irq_data_get_irq_chip(d);
502 struct iio_trigger *trig
503 = container_of(chip,
504 struct iio_trigger, subirq_chip);
505 trig->subirqs[d->irq - trig->subirq_base].enabled = false;
508 static void iio_trig_subirqunmask(struct irq_data *d)
510 struct irq_chip *chip = irq_data_get_irq_chip(d);
511 struct iio_trigger *trig
512 = container_of(chip,
513 struct iio_trigger, subirq_chip);
514 trig->subirqs[d->irq - trig->subirq_base].enabled = true;
517 static __printf(1, 0)
518 struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
520 struct iio_trigger *trig;
521 int i;
523 trig = kzalloc(sizeof *trig, GFP_KERNEL);
524 if (!trig)
525 return NULL;
527 trig->dev.type = &iio_trig_type;
528 trig->dev.bus = &iio_bus_type;
529 device_initialize(&trig->dev);
531 mutex_init(&trig->pool_lock);
532 trig->subirq_base = irq_alloc_descs(-1, 0,
533 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
535 if (trig->subirq_base < 0)
536 goto free_trig;
538 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
539 if (trig->name == NULL)
540 goto free_descs;
542 trig->subirq_chip.name = trig->name;
543 trig->subirq_chip.irq_mask = &iio_trig_subirqmask;
544 trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask;
545 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
546 irq_set_chip(trig->subirq_base + i, &trig->subirq_chip);
547 irq_set_handler(trig->subirq_base + i, &handle_simple_irq);
548 irq_modify_status(trig->subirq_base + i,
549 IRQ_NOREQUEST | IRQ_NOAUTOEN, IRQ_NOPROBE);
551 get_device(&trig->dev);
553 return trig;
555 free_descs:
556 irq_free_descs(trig->subirq_base, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
557 free_trig:
558 kfree(trig);
559 return NULL;
562 struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
564 struct iio_trigger *trig;
565 va_list vargs;
567 va_start(vargs, fmt);
568 trig = viio_trigger_alloc(fmt, vargs);
569 va_end(vargs);
571 return trig;
573 EXPORT_SYMBOL(iio_trigger_alloc);
575 void iio_trigger_free(struct iio_trigger *trig)
577 if (trig)
578 put_device(&trig->dev);
580 EXPORT_SYMBOL(iio_trigger_free);
582 static void devm_iio_trigger_release(struct device *dev, void *res)
584 iio_trigger_free(*(struct iio_trigger **)res);
588 * devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc()
589 * @dev: Device to allocate iio_trigger for
590 * @fmt: trigger name format. If it includes format
591 * specifiers, the additional arguments following
592 * format are formatted and inserted in the resulting
593 * string replacing their respective specifiers.
595 * Managed iio_trigger_alloc. iio_trigger allocated with this function is
596 * automatically freed on driver detach.
598 * RETURNS:
599 * Pointer to allocated iio_trigger on success, NULL on failure.
601 struct iio_trigger *devm_iio_trigger_alloc(struct device *dev,
602 const char *fmt, ...)
604 struct iio_trigger **ptr, *trig;
605 va_list vargs;
607 ptr = devres_alloc(devm_iio_trigger_release, sizeof(*ptr),
608 GFP_KERNEL);
609 if (!ptr)
610 return NULL;
612 /* use raw alloc_dr for kmalloc caller tracing */
613 va_start(vargs, fmt);
614 trig = viio_trigger_alloc(fmt, vargs);
615 va_end(vargs);
616 if (trig) {
617 *ptr = trig;
618 devres_add(dev, ptr);
619 } else {
620 devres_free(ptr);
623 return trig;
625 EXPORT_SYMBOL_GPL(devm_iio_trigger_alloc);
627 static void devm_iio_trigger_unreg(struct device *dev, void *res)
629 iio_trigger_unregister(*(struct iio_trigger **)res);
633 * __devm_iio_trigger_register - Resource-managed iio_trigger_register()
634 * @dev: device this trigger was allocated for
635 * @trig_info: trigger to register
636 * @this_mod: module registering the trigger
638 * Managed iio_trigger_register(). The IIO trigger registered with this
639 * function is automatically unregistered on driver detach. This function
640 * calls iio_trigger_register() internally. Refer to that function for more
641 * information.
643 * RETURNS:
644 * 0 on success, negative error number on failure.
646 int __devm_iio_trigger_register(struct device *dev,
647 struct iio_trigger *trig_info,
648 struct module *this_mod)
650 struct iio_trigger **ptr;
651 int ret;
653 ptr = devres_alloc(devm_iio_trigger_unreg, sizeof(*ptr), GFP_KERNEL);
654 if (!ptr)
655 return -ENOMEM;
657 *ptr = trig_info;
658 ret = __iio_trigger_register(trig_info, this_mod);
659 if (!ret)
660 devres_add(dev, ptr);
661 else
662 devres_free(ptr);
664 return ret;
666 EXPORT_SYMBOL_GPL(__devm_iio_trigger_register);
668 bool iio_trigger_using_own(struct iio_dev *indio_dev)
670 return indio_dev->trig->attached_own_device;
672 EXPORT_SYMBOL(iio_trigger_using_own);
675 * iio_trigger_validate_own_device - Check if a trigger and IIO device belong to
676 * the same device
677 * @trig: The IIO trigger to check
678 * @indio_dev: the IIO device to check
680 * This function can be used as the validate_device callback for triggers that
681 * can only be attached to their own device.
683 * Return: 0 if both the trigger and the IIO device belong to the same
684 * device, -EINVAL otherwise.
686 int iio_trigger_validate_own_device(struct iio_trigger *trig,
687 struct iio_dev *indio_dev)
689 if (indio_dev->dev.parent != trig->dev.parent)
690 return -EINVAL;
691 return 0;
693 EXPORT_SYMBOL(iio_trigger_validate_own_device);
695 void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
697 indio_dev->groups[indio_dev->groupcounter++] =
698 &iio_trigger_consumer_attr_group;
701 void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
703 /* Clean up an associated but not attached trigger reference */
704 if (indio_dev->trig)
705 iio_trigger_put(indio_dev->trig);