]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/iio/industrialio-trigger.c
HID: rmi: fallback to generic/multitouch if hid-rmi is not built
[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
c8cdf708
MR
122int iio_trigger_set_immutable(struct iio_dev *indio_dev, struct iio_trigger *trig)
123{
124 if (!indio_dev || !trig)
125 return -EINVAL;
126
127 mutex_lock(&indio_dev->mlock);
128 WARN_ON(indio_dev->trig_readonly);
129
130 indio_dev->trig = iio_trigger_get(trig);
131 indio_dev->trig_readonly = true;
132 mutex_unlock(&indio_dev->mlock);
133
134 return 0;
135}
136EXPORT_SYMBOL(iio_trigger_set_immutable);
137
3b8e73ec
CDL
138/* Search for trigger by name, assuming iio_trigger_list_lock held */
139static struct iio_trigger *__iio_trigger_find_by_name(const char *name)
140{
141 struct iio_trigger *iter;
142
143 list_for_each_entry(iter, &iio_trigger_list, list)
144 if (!strcmp(iter->name, name))
145 return iter;
146
147 return NULL;
148}
149
f6517f22
JC
150static struct iio_trigger *iio_trigger_find_by_name(const char *name,
151 size_t len)
1637db44 152{
f6517f22 153 struct iio_trigger *trig = NULL, *iter;
7c327857 154
1637db44 155 mutex_lock(&iio_trigger_list_lock);
f6517f22
JC
156 list_for_each_entry(iter, &iio_trigger_list, list)
157 if (sysfs_streq(iter->name, name)) {
158 trig = iter;
1637db44
JC
159 break;
160 }
1637db44
JC
161 mutex_unlock(&iio_trigger_list_lock);
162
f6517f22 163 return trig;
5f87404d 164}
1637db44 165
398fd22b 166void iio_trigger_poll(struct iio_trigger *trig)
1637db44 167{
d96d1337 168 int i;
a1a8e1dc
LPC
169
170 if (!atomic_read(&trig->use_count)) {
171 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
172
173 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
174 if (trig->subirqs[i].enabled)
d96d1337 175 generic_handle_irq(trig->subirq_base + i);
a1a8e1dc
LPC
176 else
177 iio_trigger_notify_done(trig);
178 }
179 }
1637db44
JC
180}
181EXPORT_SYMBOL(iio_trigger_poll);
8384d957
JC
182
183irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
184{
398fd22b 185 iio_trigger_poll(private);
8384d957
JC
186 return IRQ_HANDLED;
187}
188EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
1637db44 189
398fd22b 190void iio_trigger_poll_chained(struct iio_trigger *trig)
1f785681
JC
191{
192 int i;
a1a8e1dc
LPC
193
194 if (!atomic_read(&trig->use_count)) {
195 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
196
197 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
198 if (trig->subirqs[i].enabled)
1f785681 199 handle_nested_irq(trig->subirq_base + i);
a1a8e1dc
LPC
200 else
201 iio_trigger_notify_done(trig);
202 }
203 }
1f785681
JC
204}
205EXPORT_SYMBOL(iio_trigger_poll_chained);
206
1637db44
JC
207void iio_trigger_notify_done(struct iio_trigger *trig)
208{
ef2d71d6 209 if (atomic_dec_and_test(&trig->use_count) && trig->ops->try_reenable)
e69616b1 210 if (trig->ops->try_reenable(trig))
860c9c54 211 /* Missed an interrupt so launch new poll now */
398fd22b 212 iio_trigger_poll(trig);
1637db44
JC
213}
214EXPORT_SYMBOL(iio_trigger_notify_done);
215
1637db44 216/* Trigger Consumer related functions */
208b813c
JC
217static int iio_trigger_get_irq(struct iio_trigger *trig)
218{
219 int ret;
220 mutex_lock(&trig->pool_lock);
221 ret = bitmap_find_free_region(trig->pool,
222 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
223 ilog2(1));
224 mutex_unlock(&trig->pool_lock);
225 if (ret >= 0)
226 ret += trig->subirq_base;
227
228 return ret;
229}
230
231static void iio_trigger_put_irq(struct iio_trigger *trig, int irq)
232{
233 mutex_lock(&trig->pool_lock);
234 clear_bit(irq - trig->subirq_base, trig->pool);
235 mutex_unlock(&trig->pool_lock);
236}
1637db44
JC
237
238/* Complexity in here. With certain triggers (datardy) an acknowledgement
239 * may be needed if the pollfuncs do not include the data read for the
240 * triggering device.
241 * This is not currently handled. Alternative of not enabling trigger unless
242 * the relevant function is in there may be the best option.
243 */
860c9c54 244/* Worth protecting against double additions? */
208b813c
JC
245static int iio_trigger_attach_poll_func(struct iio_trigger *trig,
246 struct iio_poll_func *pf)
1637db44
JC
247{
248 int ret = 0;
51c060a0
JC
249 bool notinuse
250 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
251
860c9c54 252 /* Prevent the module from being removed whilst attached to a trigger */
f60c4a02 253 __module_get(pf->indio_dev->info->driver_module);
99543823
CDL
254
255 /* Get irq number */
51c060a0 256 pf->irq = iio_trigger_get_irq(trig);
99543823
CDL
257 if (pf->irq < 0)
258 goto out_put_module;
259
260 /* Request irq */
51c060a0
JC
261 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
262 pf->type, pf->name,
263 pf);
99543823
CDL
264 if (ret < 0)
265 goto out_put_irq;
5dd72ecb 266
99543823 267 /* Enable trigger in driver */
ef2d71d6 268 if (trig->ops->set_trigger_state && notinuse) {
d29f73db 269 ret = trig->ops->set_trigger_state(trig, true);
5dd72ecb 270 if (ret < 0)
99543823 271 goto out_free_irq;
5dd72ecb 272 }
d96d1337 273
702a7b8e
LW
274 /*
275 * Check if we just registered to our own trigger: we determine that
276 * this is the case if the IIO device and the trigger device share the
277 * same parent device.
278 */
279 if (pf->indio_dev->dev.parent == trig->dev.parent)
280 trig->attached_own_device = true;
281
1637db44 282 return ret;
99543823
CDL
283
284out_free_irq:
285 free_irq(pf->irq, pf);
286out_put_irq:
287 iio_trigger_put_irq(trig, pf->irq);
288out_put_module:
289 module_put(pf->indio_dev->info->driver_module);
290 return ret;
1637db44 291}
1637db44 292
034bd7b5 293static int iio_trigger_detach_poll_func(struct iio_trigger *trig,
208b813c 294 struct iio_poll_func *pf)
1637db44 295{
51c060a0
JC
296 int ret = 0;
297 bool no_other_users
298 = (bitmap_weight(trig->pool,
299 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
300 == 1);
ef2d71d6 301 if (trig->ops->set_trigger_state && no_other_users) {
d29f73db 302 ret = trig->ops->set_trigger_state(trig, false);
51c060a0 303 if (ret)
92825ff9 304 return ret;
1637db44 305 }
702a7b8e
LW
306 if (pf->indio_dev->dev.parent == trig->dev.parent)
307 trig->attached_own_device = false;
51c060a0
JC
308 iio_trigger_put_irq(trig, pf->irq);
309 free_irq(pf->irq, pf);
f60c4a02 310 module_put(pf->indio_dev->info->driver_module);
1637db44 311
1637db44
JC
312 return ret;
313}
1637db44 314
d96d1337
JC
315irqreturn_t iio_pollfunc_store_time(int irq, void *p)
316{
317 struct iio_poll_func *pf = p;
bc2b7dab 318 pf->timestamp = iio_get_time_ns(pf->indio_dev);
d96d1337
JC
319 return IRQ_WAKE_THREAD;
320}
321EXPORT_SYMBOL(iio_pollfunc_store_time);
322
21b185f8
JC
323struct iio_poll_func
324*iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p),
325 irqreturn_t (*thread)(int irq, void *p),
326 int type,
e65bc6ac 327 struct iio_dev *indio_dev,
21b185f8
JC
328 const char *fmt,
329 ...)
330{
331 va_list vargs;
332 struct iio_poll_func *pf;
333
334 pf = kmalloc(sizeof *pf, GFP_KERNEL);
335 if (pf == NULL)
336 return NULL;
337 va_start(vargs, fmt);
338 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
339 va_end(vargs);
340 if (pf->name == NULL) {
341 kfree(pf);
342 return NULL;
343 }
344 pf->h = h;
345 pf->thread = thread;
346 pf->type = type;
e65bc6ac 347 pf->indio_dev = indio_dev;
21b185f8
JC
348
349 return pf;
350}
351EXPORT_SYMBOL_GPL(iio_alloc_pollfunc);
352
353void iio_dealloc_pollfunc(struct iio_poll_func *pf)
354{
355 kfree(pf->name);
356 kfree(pf);
357}
358EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);
359
1637db44 360/**
860c9c54 361 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
8e563b0d
CO
362 * @dev: device associated with an industrial I/O device
363 * @attr: pointer to the device_attribute structure that
364 * is being processed
365 * @buf: buffer where the current trigger name will be printed into
1637db44
JC
366 *
367 * For trigger consumers the current_trigger interface allows the trigger
368 * used by the device to be queried.
8e563b0d
CO
369 *
370 * Return: a negative number on failure, the number of characters written
371 * on success or 0 if no trigger is available
372 */
1637db44
JC
373static ssize_t iio_trigger_read_current(struct device *dev,
374 struct device_attribute *attr,
375 char *buf)
376{
e53f5ac5 377 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
cb6c89a0 378
f8c6f4e9
JC
379 if (indio_dev->trig)
380 return sprintf(buf, "%s\n", indio_dev->trig->name);
cb6c89a0 381 return 0;
1637db44
JC
382}
383
384/**
860c9c54 385 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
8e563b0d
CO
386 * @dev: device associated with an industrial I/O device
387 * @attr: device attribute that is being processed
388 * @buf: string buffer that holds the name of the trigger
389 * @len: length of the trigger name held by buf
1637db44
JC
390 *
391 * For trigger consumers the current_trigger interface allows the trigger
17666ef3 392 * used for this device to be specified at run time based on the trigger's
1637db44 393 * name.
8e563b0d
CO
394 *
395 * Return: negative error code on failure or length of the buffer
396 * on success
397 */
1637db44
JC
398static ssize_t iio_trigger_write_current(struct device *dev,
399 struct device_attribute *attr,
400 const char *buf,
401 size_t len)
402{
e53f5ac5 403 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
f8c6f4e9 404 struct iio_trigger *oldtrig = indio_dev->trig;
43a4360e
MH
405 struct iio_trigger *trig;
406 int ret;
407
f8c6f4e9
JC
408 mutex_lock(&indio_dev->mlock);
409 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
410 mutex_unlock(&indio_dev->mlock);
1637db44
JC
411 return -EBUSY;
412 }
c8cdf708
MR
413 if (indio_dev->trig_readonly) {
414 mutex_unlock(&indio_dev->mlock);
415 return -EPERM;
416 }
f8c6f4e9 417 mutex_unlock(&indio_dev->mlock);
1637db44 418
43a4360e 419 trig = iio_trigger_find_by_name(buf, len);
5dd72ecb
JC
420 if (oldtrig == trig)
421 return len;
43a4360e 422
f8c6f4e9
JC
423 if (trig && indio_dev->info->validate_trigger) {
424 ret = indio_dev->info->validate_trigger(indio_dev, trig);
43a4360e
MH
425 if (ret)
426 return ret;
427 }
428
ef2d71d6 429 if (trig && trig->ops->validate_device) {
f8c6f4e9 430 ret = trig->ops->validate_device(trig, indio_dev);
43a4360e
MH
431 if (ret)
432 return ret;
433 }
434
f8c6f4e9 435 indio_dev->trig = trig;
43a4360e 436
735ad074
VB
437 if (oldtrig) {
438 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
439 iio_trigger_detach_poll_func(oldtrig,
440 indio_dev->pollfunc_event);
7cbb7537 441 iio_trigger_put(oldtrig);
735ad074
VB
442 }
443 if (indio_dev->trig) {
7cbb7537 444 iio_trigger_get(indio_dev->trig);
735ad074
VB
445 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
446 iio_trigger_attach_poll_func(indio_dev->trig,
447 indio_dev->pollfunc_event);
448 }
1637db44
JC
449
450 return len;
451}
452
74112d3f
GKH
453static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
454 iio_trigger_read_current,
455 iio_trigger_write_current);
1637db44
JC
456
457static struct attribute *iio_trigger_consumer_attrs[] = {
458 &dev_attr_current_trigger.attr,
459 NULL,
460};
461
462static const struct attribute_group iio_trigger_consumer_attr_group = {
463 .name = "trigger",
464 .attrs = iio_trigger_consumer_attrs,
465};
466
467static void iio_trig_release(struct device *device)
468{
469 struct iio_trigger *trig = to_iio_trigger(device);
d96d1337
JC
470 int i;
471
472 if (trig->subirq_base) {
473 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
474 irq_modify_status(trig->subirq_base + i,
475 IRQ_NOAUTOEN,
476 IRQ_NOREQUEST | IRQ_NOPROBE);
477 irq_set_chip(trig->subirq_base + i,
478 NULL);
479 irq_set_handler(trig->subirq_base + i,
480 NULL);
481 }
482
483 irq_free_descs(trig->subirq_base,
484 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
485 }
59c85e82 486 kfree(trig->name);
1637db44 487 kfree(trig);
1637db44
JC
488}
489
490static struct device_type iio_trig_type = {
491 .release = iio_trig_release,
f59c2576 492 .groups = iio_trig_dev_groups,
1637db44
JC
493};
494
d96d1337
JC
495static void iio_trig_subirqmask(struct irq_data *d)
496{
497 struct irq_chip *chip = irq_data_get_irq_chip(d);
498 struct iio_trigger *trig
499 = container_of(chip,
500 struct iio_trigger, subirq_chip);
501 trig->subirqs[d->irq - trig->subirq_base].enabled = false;
502}
503
504static void iio_trig_subirqunmask(struct irq_data *d)
505{
506 struct irq_chip *chip = irq_data_get_irq_chip(d);
507 struct iio_trigger *trig
508 = container_of(chip,
509 struct iio_trigger, subirq_chip);
510 trig->subirqs[d->irq - trig->subirq_base].enabled = true;
511}
512
d536321d 513static struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
1637db44
JC
514{
515 struct iio_trigger *trig;
516 trig = kzalloc(sizeof *trig, GFP_KERNEL);
517 if (trig) {
d96d1337 518 int i;
1637db44 519 trig->dev.type = &iio_trig_type;
5aaaeba8 520 trig->dev.bus = &iio_bus_type;
1637db44 521 device_initialize(&trig->dev);
d96d1337 522
59c85e82
JC
523 mutex_init(&trig->pool_lock);
524 trig->subirq_base
525 = irq_alloc_descs(-1, 0,
526 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
527 0);
528 if (trig->subirq_base < 0) {
529 kfree(trig);
530 return NULL;
531 }
d536321d 532
59c85e82 533 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
59c85e82
JC
534 if (trig->name == NULL) {
535 irq_free_descs(trig->subirq_base,
536 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
537 kfree(trig);
538 return NULL;
539 }
540 trig->subirq_chip.name = trig->name;
541 trig->subirq_chip.irq_mask = &iio_trig_subirqmask;
542 trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask;
543 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
544 irq_set_chip(trig->subirq_base + i,
545 &trig->subirq_chip);
546 irq_set_handler(trig->subirq_base + i,
547 &handle_simple_irq);
548 irq_modify_status(trig->subirq_base + i,
549 IRQ_NOREQUEST | IRQ_NOAUTOEN,
550 IRQ_NOPROBE);
d96d1337 551 }
5f9c035c 552 get_device(&trig->dev);
1637db44 553 }
d536321d
JA
554
555 return trig;
556}
557
558struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
559{
560 struct iio_trigger *trig;
561 va_list vargs;
562
563 va_start(vargs, fmt);
564 trig = viio_trigger_alloc(fmt, vargs);
565 va_end(vargs);
566
1637db44
JC
567 return trig;
568}
7cbb7537 569EXPORT_SYMBOL(iio_trigger_alloc);
1637db44 570
7cbb7537 571void iio_trigger_free(struct iio_trigger *trig)
1637db44
JC
572{
573 if (trig)
574 put_device(&trig->dev);
575}
7cbb7537 576EXPORT_SYMBOL(iio_trigger_free);
1637db44 577
d536321d
JA
578static void devm_iio_trigger_release(struct device *dev, void *res)
579{
580 iio_trigger_free(*(struct iio_trigger **)res);
581}
582
583static int devm_iio_trigger_match(struct device *dev, void *res, void *data)
584{
585 struct iio_trigger **r = res;
586
587 if (!r || !*r) {
588 WARN_ON(!r || !*r);
589 return 0;
590 }
591
592 return *r == data;
593}
594
a7e57dce
SK
595/**
596 * devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc()
597 * @dev: Device to allocate iio_trigger for
598 * @fmt: trigger name format. If it includes format
599 * specifiers, the additional arguments following
600 * format are formatted and inserted in the resulting
601 * string replacing their respective specifiers.
602 *
603 * Managed iio_trigger_alloc. iio_trigger allocated with this function is
604 * automatically freed on driver detach.
605 *
606 * If an iio_trigger allocated with this function needs to be freed separately,
607 * devm_iio_trigger_free() must be used.
608 *
609 * RETURNS:
610 * Pointer to allocated iio_trigger on success, NULL on failure.
611 */
d536321d
JA
612struct iio_trigger *devm_iio_trigger_alloc(struct device *dev,
613 const char *fmt, ...)
614{
615 struct iio_trigger **ptr, *trig;
616 va_list vargs;
617
618 ptr = devres_alloc(devm_iio_trigger_release, sizeof(*ptr),
619 GFP_KERNEL);
620 if (!ptr)
621 return NULL;
622
623 /* use raw alloc_dr for kmalloc caller tracing */
624 va_start(vargs, fmt);
625 trig = viio_trigger_alloc(fmt, vargs);
626 va_end(vargs);
627 if (trig) {
628 *ptr = trig;
629 devres_add(dev, ptr);
630 } else {
631 devres_free(ptr);
632 }
633
634 return trig;
635}
636EXPORT_SYMBOL_GPL(devm_iio_trigger_alloc);
637
a7e57dce
SK
638/**
639 * devm_iio_trigger_free - Resource-managed iio_trigger_free()
640 * @dev: Device this iio_dev belongs to
641 * @iio_trig: the iio_trigger associated with the device
642 *
643 * Free iio_trigger allocated with devm_iio_trigger_alloc().
644 */
d536321d
JA
645void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig)
646{
647 int rc;
648
649 rc = devres_release(dev, devm_iio_trigger_release,
650 devm_iio_trigger_match, iio_trig);
651 WARN_ON(rc);
652}
653EXPORT_SYMBOL_GPL(devm_iio_trigger_free);
654
9083325f
GB
655static void devm_iio_trigger_unreg(struct device *dev, void *res)
656{
657 iio_trigger_unregister(*(struct iio_trigger **)res);
658}
659
660/**
661 * devm_iio_trigger_register - Resource-managed iio_trigger_register()
662 * @dev: device this trigger was allocated for
663 * @trig_info: trigger to register
664 *
665 * Managed iio_trigger_register(). The IIO trigger registered with this
666 * function is automatically unregistered on driver detach. This function
667 * calls iio_trigger_register() internally. Refer to that function for more
668 * information.
669 *
670 * If an iio_trigger registered with this function needs to be unregistered
671 * separately, devm_iio_trigger_unregister() must be used.
672 *
673 * RETURNS:
674 * 0 on success, negative error number on failure.
675 */
676int devm_iio_trigger_register(struct device *dev, struct iio_trigger *trig_info)
677{
678 struct iio_trigger **ptr;
679 int ret;
680
681 ptr = devres_alloc(devm_iio_trigger_unreg, sizeof(*ptr), GFP_KERNEL);
682 if (!ptr)
683 return -ENOMEM;
684
685 *ptr = trig_info;
686 ret = iio_trigger_register(trig_info);
687 if (!ret)
688 devres_add(dev, ptr);
689 else
690 devres_free(ptr);
691
692 return ret;
693}
694EXPORT_SYMBOL_GPL(devm_iio_trigger_register);
695
696/**
697 * devm_iio_trigger_unregister - Resource-managed iio_trigger_unregister()
698 * @dev: device this iio_trigger belongs to
699 * @trig_info: the trigger associated with the device
700 *
701 * Unregister trigger registered with devm_iio_trigger_register().
702 */
703void devm_iio_trigger_unregister(struct device *dev,
704 struct iio_trigger *trig_info)
705{
706 int rc;
707
708 rc = devres_release(dev, devm_iio_trigger_unreg, devm_iio_trigger_match,
709 trig_info);
710 WARN_ON(rc);
711}
712EXPORT_SYMBOL_GPL(devm_iio_trigger_unregister);
713
702a7b8e
LW
714bool iio_trigger_using_own(struct iio_dev *indio_dev)
715{
716 return indio_dev->trig->attached_own_device;
717}
718EXPORT_SYMBOL(iio_trigger_using_own);
719
43ece27e
LPC
720/**
721 * iio_trigger_validate_own_device - Check if a trigger and IIO device belong to
722 * the same device
723 * @trig: The IIO trigger to check
724 * @indio_dev: the IIO device to check
725 *
726 * This function can be used as the validate_device callback for triggers that
727 * can only be attached to their own device.
728 *
729 * Return: 0 if both the trigger and the IIO device belong to the same
730 * device, -EINVAL otherwise.
731 */
732int iio_trigger_validate_own_device(struct iio_trigger *trig,
733 struct iio_dev *indio_dev)
734{
735 if (indio_dev->dev.parent != trig->dev.parent)
736 return -EINVAL;
737 return 0;
738}
739EXPORT_SYMBOL(iio_trigger_validate_own_device);
740
67be8e32 741void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
1637db44 742{
f8c6f4e9 743 indio_dev->groups[indio_dev->groupcounter++] =
26d25ae3 744 &iio_trigger_consumer_attr_group;
1637db44 745}
1637db44 746
f8c6f4e9 747void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
1637db44 748{
860c9c54 749 /* Clean up an associated but not attached trigger reference */
f8c6f4e9 750 if (indio_dev->trig)
7cbb7537 751 iio_trigger_put(indio_dev->trig);
1637db44 752}
1637db44 753
3b99fb76 754int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
c3db00cc 755{
67be8e32
JC
756 return iio_trigger_attach_poll_func(indio_dev->trig,
757 indio_dev->pollfunc);
c3db00cc 758}
3b99fb76 759EXPORT_SYMBOL(iio_triggered_buffer_postenable);
c3db00cc 760
3b99fb76 761int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
c3db00cc 762{
034bd7b5 763 return iio_trigger_detach_poll_func(indio_dev->trig,
67be8e32 764 indio_dev->pollfunc);
c3db00cc 765}
3b99fb76 766EXPORT_SYMBOL(iio_triggered_buffer_predisable);