]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/iio/industrialio-trigger.c
Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dledford/rdma
[mirror_ubuntu-artful-kernel.git] / drivers / iio / industrialio-trigger.c
CommitLineData
1637db44
JC
1/* The industrial I/O core, trigger handling functions
2 *
3 * Copyright (c) 2008 Jonathan Cameron
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
8 */
9
10#include <linux/kernel.h>
1637db44
JC
11#include <linux/idr.h>
12#include <linux/err.h>
13#include <linux/device.h>
14#include <linux/interrupt.h>
15#include <linux/list.h>
5a0e3ad6 16#include <linux/slab.h>
1637db44 17
06458e27
JC
18#include <linux/iio/iio.h>
19#include <linux/iio/trigger.h>
df9c1c42 20#include "iio_core.h"
6aea1c36 21#include "iio_core_trigger.h"
06458e27 22#include <linux/iio/trigger_consumer.h>
1637db44
JC
23
24/* RFC - Question of approach
25 * Make the common case (single sensor single trigger)
26 * simple by starting trigger capture from when first sensors
27 * is added.
28 *
29 * Complex simultaneous start requires use of 'hold' functionality
30 * of the trigger. (not implemented)
31 *
32 * Any other suggestions?
33 */
34
47c24fdd 35static DEFINE_IDA(iio_trigger_ida);
1637db44
JC
36
37/* Single list of all available triggers */
38static LIST_HEAD(iio_trigger_list);
39static DEFINE_MUTEX(iio_trigger_list_lock);
40
59c85e82
JC
41/**
42 * iio_trigger_read_name() - retrieve useful identifying name
8e563b0d
CO
43 * @dev: device associated with the iio_trigger
44 * @attr: pointer to the device_attribute structure that is
45 * being processed
46 * @buf: buffer to print the name into
47 *
48 * Return: a negative number on failure or the number of written
49 * characters on success.
50 */
59c85e82
JC
51static ssize_t iio_trigger_read_name(struct device *dev,
52 struct device_attribute *attr,
53 char *buf)
54{
971ff1db 55 struct iio_trigger *trig = to_iio_trigger(dev);
59c85e82
JC
56 return sprintf(buf, "%s\n", trig->name);
57}
58
59static DEVICE_ATTR(name, S_IRUGO, iio_trigger_read_name, NULL);
60
6d459aa0
LPC
61static struct attribute *iio_trig_dev_attrs[] = {
62 &dev_attr_name.attr,
63 NULL,
64};
f59c2576 65ATTRIBUTE_GROUPS(iio_trig_dev);
1637db44 66
3b8e73ec
CDL
67static struct iio_trigger *__iio_trigger_find_by_name(const char *name);
68
1637db44
JC
69int iio_trigger_register(struct iio_trigger *trig_info)
70{
71 int ret;
72
ef2d71d6
JC
73 /* trig_info->ops is required for the module member */
74 if (!trig_info->ops)
75 return -EINVAL;
76
47c24fdd 77 trig_info->id = ida_simple_get(&iio_trigger_ida, 0, 0, GFP_KERNEL);
92825ff9
HK
78 if (trig_info->id < 0)
79 return trig_info->id;
80
1637db44
JC
81 /* Set the name used for the sysfs directory etc */
82 dev_set_name(&trig_info->dev, "trigger%ld",
83 (unsigned long) trig_info->id);
84
85 ret = device_add(&trig_info->dev);
86 if (ret)
87 goto error_unregister_id;
88
1637db44
JC
89 /* Add to list of available triggers held by the IIO core */
90 mutex_lock(&iio_trigger_list_lock);
3b8e73ec
CDL
91 if (__iio_trigger_find_by_name(trig_info->name)) {
92 pr_err("Duplicate trigger name '%s'\n", trig_info->name);
93 ret = -EEXIST;
94 goto error_device_del;
95 }
1637db44
JC
96 list_add_tail(&trig_info->list, &iio_trigger_list);
97 mutex_unlock(&iio_trigger_list_lock);
98
99 return 0;
100
3b8e73ec
CDL
101error_device_del:
102 mutex_unlock(&iio_trigger_list_lock);
103 device_del(&trig_info->dev);
1637db44 104error_unregister_id:
47c24fdd 105 ida_simple_remove(&iio_trigger_ida, trig_info->id);
1637db44
JC
106 return ret;
107}
108EXPORT_SYMBOL(iio_trigger_register);
109
110void iio_trigger_unregister(struct iio_trigger *trig_info)
111{
1637db44 112 mutex_lock(&iio_trigger_list_lock);
582e5489 113 list_del(&trig_info->list);
1637db44
JC
114 mutex_unlock(&iio_trigger_list_lock);
115
47c24fdd 116 ida_simple_remove(&iio_trigger_ida, trig_info->id);
1637db44 117 /* Possible issue in here */
8bade406 118 device_del(&trig_info->dev);
1637db44
JC
119}
120EXPORT_SYMBOL(iio_trigger_unregister);
121
3b8e73ec
CDL
122/* Search for trigger by name, assuming iio_trigger_list_lock held */
123static struct iio_trigger *__iio_trigger_find_by_name(const char *name)
124{
125 struct iio_trigger *iter;
126
127 list_for_each_entry(iter, &iio_trigger_list, list)
128 if (!strcmp(iter->name, name))
129 return iter;
130
131 return NULL;
132}
133
f6517f22
JC
134static struct iio_trigger *iio_trigger_find_by_name(const char *name,
135 size_t len)
1637db44 136{
f6517f22 137 struct iio_trigger *trig = NULL, *iter;
7c327857 138
1637db44 139 mutex_lock(&iio_trigger_list_lock);
f6517f22
JC
140 list_for_each_entry(iter, &iio_trigger_list, list)
141 if (sysfs_streq(iter->name, name)) {
142 trig = iter;
1637db44
JC
143 break;
144 }
1637db44
JC
145 mutex_unlock(&iio_trigger_list_lock);
146
f6517f22 147 return trig;
5f87404d 148}
1637db44 149
398fd22b 150void iio_trigger_poll(struct iio_trigger *trig)
1637db44 151{
d96d1337 152 int i;
a1a8e1dc
LPC
153
154 if (!atomic_read(&trig->use_count)) {
155 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
156
157 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
158 if (trig->subirqs[i].enabled)
d96d1337 159 generic_handle_irq(trig->subirq_base + i);
a1a8e1dc
LPC
160 else
161 iio_trigger_notify_done(trig);
162 }
163 }
1637db44
JC
164}
165EXPORT_SYMBOL(iio_trigger_poll);
8384d957
JC
166
167irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
168{
398fd22b 169 iio_trigger_poll(private);
8384d957
JC
170 return IRQ_HANDLED;
171}
172EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
1637db44 173
398fd22b 174void iio_trigger_poll_chained(struct iio_trigger *trig)
1f785681
JC
175{
176 int i;
a1a8e1dc
LPC
177
178 if (!atomic_read(&trig->use_count)) {
179 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
180
181 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
182 if (trig->subirqs[i].enabled)
1f785681 183 handle_nested_irq(trig->subirq_base + i);
a1a8e1dc
LPC
184 else
185 iio_trigger_notify_done(trig);
186 }
187 }
1f785681
JC
188}
189EXPORT_SYMBOL(iio_trigger_poll_chained);
190
1637db44
JC
191void iio_trigger_notify_done(struct iio_trigger *trig)
192{
ef2d71d6 193 if (atomic_dec_and_test(&trig->use_count) && trig->ops->try_reenable)
e69616b1 194 if (trig->ops->try_reenable(trig))
860c9c54 195 /* Missed an interrupt so launch new poll now */
398fd22b 196 iio_trigger_poll(trig);
1637db44
JC
197}
198EXPORT_SYMBOL(iio_trigger_notify_done);
199
1637db44 200/* Trigger Consumer related functions */
208b813c
JC
201static int iio_trigger_get_irq(struct iio_trigger *trig)
202{
203 int ret;
204 mutex_lock(&trig->pool_lock);
205 ret = bitmap_find_free_region(trig->pool,
206 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
207 ilog2(1));
208 mutex_unlock(&trig->pool_lock);
209 if (ret >= 0)
210 ret += trig->subirq_base;
211
212 return ret;
213}
214
215static void iio_trigger_put_irq(struct iio_trigger *trig, int irq)
216{
217 mutex_lock(&trig->pool_lock);
218 clear_bit(irq - trig->subirq_base, trig->pool);
219 mutex_unlock(&trig->pool_lock);
220}
1637db44
JC
221
222/* Complexity in here. With certain triggers (datardy) an acknowledgement
223 * may be needed if the pollfuncs do not include the data read for the
224 * triggering device.
225 * This is not currently handled. Alternative of not enabling trigger unless
226 * the relevant function is in there may be the best option.
227 */
860c9c54 228/* Worth protecting against double additions? */
208b813c
JC
229static int iio_trigger_attach_poll_func(struct iio_trigger *trig,
230 struct iio_poll_func *pf)
1637db44
JC
231{
232 int ret = 0;
51c060a0
JC
233 bool notinuse
234 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
235
860c9c54 236 /* Prevent the module from being removed whilst attached to a trigger */
f60c4a02 237 __module_get(pf->indio_dev->info->driver_module);
99543823
CDL
238
239 /* Get irq number */
51c060a0 240 pf->irq = iio_trigger_get_irq(trig);
99543823
CDL
241 if (pf->irq < 0)
242 goto out_put_module;
243
244 /* Request irq */
51c060a0
JC
245 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
246 pf->type, pf->name,
247 pf);
99543823
CDL
248 if (ret < 0)
249 goto out_put_irq;
5dd72ecb 250
99543823 251 /* Enable trigger in driver */
ef2d71d6 252 if (trig->ops->set_trigger_state && notinuse) {
d29f73db 253 ret = trig->ops->set_trigger_state(trig, true);
5dd72ecb 254 if (ret < 0)
99543823 255 goto out_free_irq;
5dd72ecb 256 }
d96d1337 257
1637db44 258 return ret;
99543823
CDL
259
260out_free_irq:
261 free_irq(pf->irq, pf);
262out_put_irq:
263 iio_trigger_put_irq(trig, pf->irq);
264out_put_module:
265 module_put(pf->indio_dev->info->driver_module);
266 return ret;
1637db44 267}
1637db44 268
034bd7b5 269static int iio_trigger_detach_poll_func(struct iio_trigger *trig,
208b813c 270 struct iio_poll_func *pf)
1637db44 271{
51c060a0
JC
272 int ret = 0;
273 bool no_other_users
274 = (bitmap_weight(trig->pool,
275 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
276 == 1);
ef2d71d6 277 if (trig->ops->set_trigger_state && no_other_users) {
d29f73db 278 ret = trig->ops->set_trigger_state(trig, false);
51c060a0 279 if (ret)
92825ff9 280 return ret;
1637db44 281 }
51c060a0
JC
282 iio_trigger_put_irq(trig, pf->irq);
283 free_irq(pf->irq, pf);
f60c4a02 284 module_put(pf->indio_dev->info->driver_module);
1637db44 285
1637db44
JC
286 return ret;
287}
1637db44 288
d96d1337
JC
289irqreturn_t iio_pollfunc_store_time(int irq, void *p)
290{
291 struct iio_poll_func *pf = p;
bc2b7dab 292 pf->timestamp = iio_get_time_ns(pf->indio_dev);
d96d1337
JC
293 return IRQ_WAKE_THREAD;
294}
295EXPORT_SYMBOL(iio_pollfunc_store_time);
296
21b185f8
JC
297struct iio_poll_func
298*iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p),
299 irqreturn_t (*thread)(int irq, void *p),
300 int type,
e65bc6ac 301 struct iio_dev *indio_dev,
21b185f8
JC
302 const char *fmt,
303 ...)
304{
305 va_list vargs;
306 struct iio_poll_func *pf;
307
308 pf = kmalloc(sizeof *pf, GFP_KERNEL);
309 if (pf == NULL)
310 return NULL;
311 va_start(vargs, fmt);
312 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
313 va_end(vargs);
314 if (pf->name == NULL) {
315 kfree(pf);
316 return NULL;
317 }
318 pf->h = h;
319 pf->thread = thread;
320 pf->type = type;
e65bc6ac 321 pf->indio_dev = indio_dev;
21b185f8
JC
322
323 return pf;
324}
325EXPORT_SYMBOL_GPL(iio_alloc_pollfunc);
326
327void iio_dealloc_pollfunc(struct iio_poll_func *pf)
328{
329 kfree(pf->name);
330 kfree(pf);
331}
332EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);
333
1637db44 334/**
860c9c54 335 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
8e563b0d
CO
336 * @dev: device associated with an industrial I/O device
337 * @attr: pointer to the device_attribute structure that
338 * is being processed
339 * @buf: buffer where the current trigger name will be printed into
1637db44
JC
340 *
341 * For trigger consumers the current_trigger interface allows the trigger
342 * used by the device to be queried.
8e563b0d
CO
343 *
344 * Return: a negative number on failure, the number of characters written
345 * on success or 0 if no trigger is available
346 */
1637db44
JC
347static ssize_t iio_trigger_read_current(struct device *dev,
348 struct device_attribute *attr,
349 char *buf)
350{
e53f5ac5 351 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
cb6c89a0 352
f8c6f4e9
JC
353 if (indio_dev->trig)
354 return sprintf(buf, "%s\n", indio_dev->trig->name);
cb6c89a0 355 return 0;
1637db44
JC
356}
357
358/**
860c9c54 359 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
8e563b0d
CO
360 * @dev: device associated with an industrial I/O device
361 * @attr: device attribute that is being processed
362 * @buf: string buffer that holds the name of the trigger
363 * @len: length of the trigger name held by buf
1637db44
JC
364 *
365 * For trigger consumers the current_trigger interface allows the trigger
17666ef3 366 * used for this device to be specified at run time based on the trigger's
1637db44 367 * name.
8e563b0d
CO
368 *
369 * Return: negative error code on failure or length of the buffer
370 * on success
371 */
1637db44
JC
372static ssize_t iio_trigger_write_current(struct device *dev,
373 struct device_attribute *attr,
374 const char *buf,
375 size_t len)
376{
e53f5ac5 377 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
f8c6f4e9 378 struct iio_trigger *oldtrig = indio_dev->trig;
43a4360e
MH
379 struct iio_trigger *trig;
380 int ret;
381
f8c6f4e9
JC
382 mutex_lock(&indio_dev->mlock);
383 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
384 mutex_unlock(&indio_dev->mlock);
1637db44
JC
385 return -EBUSY;
386 }
f8c6f4e9 387 mutex_unlock(&indio_dev->mlock);
1637db44 388
43a4360e 389 trig = iio_trigger_find_by_name(buf, len);
5dd72ecb
JC
390 if (oldtrig == trig)
391 return len;
43a4360e 392
f8c6f4e9
JC
393 if (trig && indio_dev->info->validate_trigger) {
394 ret = indio_dev->info->validate_trigger(indio_dev, trig);
43a4360e
MH
395 if (ret)
396 return ret;
397 }
398
ef2d71d6 399 if (trig && trig->ops->validate_device) {
f8c6f4e9 400 ret = trig->ops->validate_device(trig, indio_dev);
43a4360e
MH
401 if (ret)
402 return ret;
403 }
404
f8c6f4e9 405 indio_dev->trig = trig;
43a4360e 406
735ad074
VB
407 if (oldtrig) {
408 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
409 iio_trigger_detach_poll_func(oldtrig,
410 indio_dev->pollfunc_event);
7cbb7537 411 iio_trigger_put(oldtrig);
735ad074
VB
412 }
413 if (indio_dev->trig) {
7cbb7537 414 iio_trigger_get(indio_dev->trig);
735ad074
VB
415 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
416 iio_trigger_attach_poll_func(indio_dev->trig,
417 indio_dev->pollfunc_event);
418 }
1637db44
JC
419
420 return len;
421}
422
74112d3f
GKH
423static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
424 iio_trigger_read_current,
425 iio_trigger_write_current);
1637db44
JC
426
427static struct attribute *iio_trigger_consumer_attrs[] = {
428 &dev_attr_current_trigger.attr,
429 NULL,
430};
431
432static const struct attribute_group iio_trigger_consumer_attr_group = {
433 .name = "trigger",
434 .attrs = iio_trigger_consumer_attrs,
435};
436
437static void iio_trig_release(struct device *device)
438{
439 struct iio_trigger *trig = to_iio_trigger(device);
d96d1337
JC
440 int i;
441
442 if (trig->subirq_base) {
443 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
444 irq_modify_status(trig->subirq_base + i,
445 IRQ_NOAUTOEN,
446 IRQ_NOREQUEST | IRQ_NOPROBE);
447 irq_set_chip(trig->subirq_base + i,
448 NULL);
449 irq_set_handler(trig->subirq_base + i,
450 NULL);
451 }
452
453 irq_free_descs(trig->subirq_base,
454 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
455 }
59c85e82 456 kfree(trig->name);
1637db44 457 kfree(trig);
1637db44
JC
458}
459
460static struct device_type iio_trig_type = {
461 .release = iio_trig_release,
f59c2576 462 .groups = iio_trig_dev_groups,
1637db44
JC
463};
464
d96d1337
JC
465static void iio_trig_subirqmask(struct irq_data *d)
466{
467 struct irq_chip *chip = irq_data_get_irq_chip(d);
468 struct iio_trigger *trig
469 = container_of(chip,
470 struct iio_trigger, subirq_chip);
471 trig->subirqs[d->irq - trig->subirq_base].enabled = false;
472}
473
474static void iio_trig_subirqunmask(struct irq_data *d)
475{
476 struct irq_chip *chip = irq_data_get_irq_chip(d);
477 struct iio_trigger *trig
478 = container_of(chip,
479 struct iio_trigger, subirq_chip);
480 trig->subirqs[d->irq - trig->subirq_base].enabled = true;
481}
482
d536321d 483static struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
1637db44
JC
484{
485 struct iio_trigger *trig;
486 trig = kzalloc(sizeof *trig, GFP_KERNEL);
487 if (trig) {
d96d1337 488 int i;
1637db44 489 trig->dev.type = &iio_trig_type;
5aaaeba8 490 trig->dev.bus = &iio_bus_type;
1637db44 491 device_initialize(&trig->dev);
d96d1337 492
59c85e82
JC
493 mutex_init(&trig->pool_lock);
494 trig->subirq_base
495 = irq_alloc_descs(-1, 0,
496 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
497 0);
498 if (trig->subirq_base < 0) {
499 kfree(trig);
500 return NULL;
501 }
d536321d 502
59c85e82 503 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
59c85e82
JC
504 if (trig->name == NULL) {
505 irq_free_descs(trig->subirq_base,
506 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
507 kfree(trig);
508 return NULL;
509 }
510 trig->subirq_chip.name = trig->name;
511 trig->subirq_chip.irq_mask = &iio_trig_subirqmask;
512 trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask;
513 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
514 irq_set_chip(trig->subirq_base + i,
515 &trig->subirq_chip);
516 irq_set_handler(trig->subirq_base + i,
517 &handle_simple_irq);
518 irq_modify_status(trig->subirq_base + i,
519 IRQ_NOREQUEST | IRQ_NOAUTOEN,
520 IRQ_NOPROBE);
d96d1337 521 }
5f9c035c 522 get_device(&trig->dev);
1637db44 523 }
d536321d
JA
524
525 return trig;
526}
527
528struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
529{
530 struct iio_trigger *trig;
531 va_list vargs;
532
533 va_start(vargs, fmt);
534 trig = viio_trigger_alloc(fmt, vargs);
535 va_end(vargs);
536
1637db44
JC
537 return trig;
538}
7cbb7537 539EXPORT_SYMBOL(iio_trigger_alloc);
1637db44 540
7cbb7537 541void iio_trigger_free(struct iio_trigger *trig)
1637db44
JC
542{
543 if (trig)
544 put_device(&trig->dev);
545}
7cbb7537 546EXPORT_SYMBOL(iio_trigger_free);
1637db44 547
d536321d
JA
548static void devm_iio_trigger_release(struct device *dev, void *res)
549{
550 iio_trigger_free(*(struct iio_trigger **)res);
551}
552
553static int devm_iio_trigger_match(struct device *dev, void *res, void *data)
554{
555 struct iio_trigger **r = res;
556
557 if (!r || !*r) {
558 WARN_ON(!r || !*r);
559 return 0;
560 }
561
562 return *r == data;
563}
564
a7e57dce
SK
565/**
566 * devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc()
567 * @dev: Device to allocate iio_trigger for
568 * @fmt: trigger name format. If it includes format
569 * specifiers, the additional arguments following
570 * format are formatted and inserted in the resulting
571 * string replacing their respective specifiers.
572 *
573 * Managed iio_trigger_alloc. iio_trigger allocated with this function is
574 * automatically freed on driver detach.
575 *
576 * If an iio_trigger allocated with this function needs to be freed separately,
577 * devm_iio_trigger_free() must be used.
578 *
579 * RETURNS:
580 * Pointer to allocated iio_trigger on success, NULL on failure.
581 */
d536321d
JA
582struct iio_trigger *devm_iio_trigger_alloc(struct device *dev,
583 const char *fmt, ...)
584{
585 struct iio_trigger **ptr, *trig;
586 va_list vargs;
587
588 ptr = devres_alloc(devm_iio_trigger_release, sizeof(*ptr),
589 GFP_KERNEL);
590 if (!ptr)
591 return NULL;
592
593 /* use raw alloc_dr for kmalloc caller tracing */
594 va_start(vargs, fmt);
595 trig = viio_trigger_alloc(fmt, vargs);
596 va_end(vargs);
597 if (trig) {
598 *ptr = trig;
599 devres_add(dev, ptr);
600 } else {
601 devres_free(ptr);
602 }
603
604 return trig;
605}
606EXPORT_SYMBOL_GPL(devm_iio_trigger_alloc);
607
a7e57dce
SK
608/**
609 * devm_iio_trigger_free - Resource-managed iio_trigger_free()
610 * @dev: Device this iio_dev belongs to
611 * @iio_trig: the iio_trigger associated with the device
612 *
613 * Free iio_trigger allocated with devm_iio_trigger_alloc().
614 */
d536321d
JA
615void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig)
616{
617 int rc;
618
619 rc = devres_release(dev, devm_iio_trigger_release,
620 devm_iio_trigger_match, iio_trig);
621 WARN_ON(rc);
622}
623EXPORT_SYMBOL_GPL(devm_iio_trigger_free);
624
67be8e32 625void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
1637db44 626{
f8c6f4e9 627 indio_dev->groups[indio_dev->groupcounter++] =
26d25ae3 628 &iio_trigger_consumer_attr_group;
1637db44 629}
1637db44 630
f8c6f4e9 631void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
1637db44 632{
860c9c54 633 /* Clean up an associated but not attached trigger reference */
f8c6f4e9 634 if (indio_dev->trig)
7cbb7537 635 iio_trigger_put(indio_dev->trig);
1637db44 636}
1637db44 637
3b99fb76 638int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
c3db00cc 639{
67be8e32
JC
640 return iio_trigger_attach_poll_func(indio_dev->trig,
641 indio_dev->pollfunc);
c3db00cc 642}
3b99fb76 643EXPORT_SYMBOL(iio_triggered_buffer_postenable);
c3db00cc 644
3b99fb76 645int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
c3db00cc 646{
034bd7b5 647 return iio_trigger_detach_poll_func(indio_dev->trig,
67be8e32 648 indio_dev->pollfunc);
c3db00cc 649}
3b99fb76 650EXPORT_SYMBOL(iio_triggered_buffer_predisable);