blob: 0f582df75a1990efdd36bbf8cefee2892555cb65 [file] [log] [blame]
Jonathan Cameron1637db42009-08-18 18:06:26 +01001/* 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>
Jonathan Cameron1637db42009-08-18 18:06:26 +010011#include <linux/idr.h>
12#include <linux/err.h>
13#include <linux/device.h>
14#include <linux/interrupt.h>
15#include <linux/list.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Jonathan Cameron1637db42009-08-18 18:06:26 +010017
Jonathan Cameron06458e22012-04-25 15:54:58 +010018#include <linux/iio/iio.h>
19#include <linux/iio/trigger.h>
Jonathan Camerondf9c1c42011-08-12 17:56:03 +010020#include "iio_core.h"
Jonathan Cameron6aea1c32011-08-24 17:28:38 +010021#include "iio_core_trigger.h"
Jonathan Cameron06458e22012-04-25 15:54:58 +010022#include <linux/iio/trigger_consumer.h>
Jonathan Cameron1637db42009-08-18 18:06:26 +010023
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
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010035static DEFINE_IDA(iio_trigger_ida);
Jonathan Cameron1637db42009-08-18 18:06:26 +010036
37/* Single list of all available triggers */
38static LIST_HEAD(iio_trigger_list);
39static DEFINE_MUTEX(iio_trigger_list_lock);
40
41/**
Jonathan Cameron59c85e82011-05-18 14:42:22 +010042 * iio_trigger_read_name() - retrieve useful identifying name
43 **/
44static ssize_t iio_trigger_read_name(struct device *dev,
45 struct device_attribute *attr,
46 char *buf)
47{
48 struct iio_trigger *trig = dev_get_drvdata(dev);
49 return sprintf(buf, "%s\n", trig->name);
50}
51
52static DEVICE_ATTR(name, S_IRUGO, iio_trigger_read_name, NULL);
53
54/**
Jonathan Cameron1637db42009-08-18 18:06:26 +010055 * iio_trigger_register_sysfs() - create a device for this trigger
56 * @trig_info: the trigger
57 *
58 * Also adds any control attribute registered by the trigger driver
59 **/
60static int iio_trigger_register_sysfs(struct iio_trigger *trig_info)
61{
Jonathan Cameron59c85e82011-05-18 14:42:22 +010062 return sysfs_add_file_to_group(&trig_info->dev.kobj,
63 &dev_attr_name.attr,
64 NULL);
Jonathan Cameron1637db42009-08-18 18:06:26 +010065}
66
67static void iio_trigger_unregister_sysfs(struct iio_trigger *trig_info)
68{
Jonathan Cameron59c85e82011-05-18 14:42:22 +010069 sysfs_remove_file_from_group(&trig_info->dev.kobj,
70 &dev_attr_name.attr,
71 NULL);
Jonathan Cameron1637db42009-08-18 18:06:26 +010072}
73
Jonathan Cameron1637db42009-08-18 18:06:26 +010074int iio_trigger_register(struct iio_trigger *trig_info)
75{
76 int ret;
77
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010078 trig_info->id = ida_simple_get(&iio_trigger_ida, 0, 0, GFP_KERNEL);
79 if (trig_info->id < 0) {
80 ret = trig_info->id;
Jonathan Cameron1637db42009-08-18 18:06:26 +010081 goto error_ret;
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010082 }
Jonathan Cameron1637db42009-08-18 18:06:26 +010083 /* Set the name used for the sysfs directory etc */
84 dev_set_name(&trig_info->dev, "trigger%ld",
85 (unsigned long) trig_info->id);
86
87 ret = device_add(&trig_info->dev);
88 if (ret)
89 goto error_unregister_id;
90
91 ret = iio_trigger_register_sysfs(trig_info);
92 if (ret)
93 goto error_device_del;
94
95 /* Add to list of available triggers held by the IIO core */
96 mutex_lock(&iio_trigger_list_lock);
97 list_add_tail(&trig_info->list, &iio_trigger_list);
98 mutex_unlock(&iio_trigger_list_lock);
99
100 return 0;
101
102error_device_del:
103 device_del(&trig_info->dev);
104error_unregister_id:
Jonathan Cameron47c24fd2011-08-30 12:41:07 +0100105 ida_simple_remove(&iio_trigger_ida, trig_info->id);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100106error_ret:
107 return ret;
108}
109EXPORT_SYMBOL(iio_trigger_register);
110
111void iio_trigger_unregister(struct iio_trigger *trig_info)
112{
Jonathan Cameron1637db42009-08-18 18:06:26 +0100113 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameron582e5482011-04-15 18:55:54 +0100114 list_del(&trig_info->list);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100115 mutex_unlock(&iio_trigger_list_lock);
116
117 iio_trigger_unregister_sysfs(trig_info);
Jonathan Cameron47c24fd2011-08-30 12:41:07 +0100118 ida_simple_remove(&iio_trigger_ida, trig_info->id);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100119 /* Possible issue in here */
120 device_unregister(&trig_info->dev);
121}
122EXPORT_SYMBOL(iio_trigger_unregister);
123
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100124static struct iio_trigger *iio_trigger_find_by_name(const char *name,
125 size_t len)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100126{
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100127 struct iio_trigger *trig = NULL, *iter;
Michael Hennerich7c327852010-04-26 10:49:10 +0200128
Jonathan Cameron1637db42009-08-18 18:06:26 +0100129 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100130 list_for_each_entry(iter, &iio_trigger_list, list)
131 if (sysfs_streq(iter->name, name)) {
132 trig = iter;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100133 break;
134 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100135 mutex_unlock(&iio_trigger_list_lock);
136
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100137 return trig;
Jonathan Cameron5f874042010-05-04 22:20:54 +0100138}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100139
Jonathan Cameron7b2c33b2010-07-11 16:39:11 +0100140void iio_trigger_poll(struct iio_trigger *trig, s64 time)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100141{
Jonathan Camerond96d1332011-05-18 14:41:18 +0100142 int i;
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100143 if (!trig->use_count)
Jonathan Camerond96d1332011-05-18 14:41:18 +0100144 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++)
145 if (trig->subirqs[i].enabled) {
146 trig->use_count++;
147 generic_handle_irq(trig->subirq_base + i);
148 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100149}
150EXPORT_SYMBOL(iio_trigger_poll);
151
Jonathan Cameron8384d952011-05-18 14:41:21 +0100152irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
153{
154 iio_trigger_poll(private, iio_get_time_ns());
155 return IRQ_HANDLED;
156}
157EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
158
Jonathan Cameron1f785682011-05-18 14:42:11 +0100159void iio_trigger_poll_chained(struct iio_trigger *trig, s64 time)
160{
161 int i;
Jonathan Camerone69616b2011-10-26 17:27:39 +0100162 if (!trig->use_count)
Jonathan Cameron1f785682011-05-18 14:42:11 +0100163 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++)
164 if (trig->subirqs[i].enabled) {
165 trig->use_count++;
166 handle_nested_irq(trig->subirq_base + i);
167 }
Jonathan Cameron1f785682011-05-18 14:42:11 +0100168}
169EXPORT_SYMBOL(iio_trigger_poll_chained);
170
Jonathan Cameron1637db42009-08-18 18:06:26 +0100171void iio_trigger_notify_done(struct iio_trigger *trig)
172{
173 trig->use_count--;
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100174 if (trig->use_count == 0 && trig->ops && trig->ops->try_reenable)
Jonathan Camerone69616b2011-10-26 17:27:39 +0100175 if (trig->ops->try_reenable(trig))
Jonathan Cameron1637db42009-08-18 18:06:26 +0100176 /* Missed and interrupt so launch new poll now */
Jonathan Cameron7b2c33b2010-07-11 16:39:11 +0100177 iio_trigger_poll(trig, 0);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100178}
179EXPORT_SYMBOL(iio_trigger_notify_done);
180
Jonathan Cameron1637db42009-08-18 18:06:26 +0100181/* Trigger Consumer related functions */
Jonathan Cameron208b8132011-08-24 17:28:41 +0100182static int iio_trigger_get_irq(struct iio_trigger *trig)
183{
184 int ret;
185 mutex_lock(&trig->pool_lock);
186 ret = bitmap_find_free_region(trig->pool,
187 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
188 ilog2(1));
189 mutex_unlock(&trig->pool_lock);
190 if (ret >= 0)
191 ret += trig->subirq_base;
192
193 return ret;
194}
195
196static void iio_trigger_put_irq(struct iio_trigger *trig, int irq)
197{
198 mutex_lock(&trig->pool_lock);
199 clear_bit(irq - trig->subirq_base, trig->pool);
200 mutex_unlock(&trig->pool_lock);
201}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100202
203/* Complexity in here. With certain triggers (datardy) an acknowledgement
204 * may be needed if the pollfuncs do not include the data read for the
205 * triggering device.
206 * This is not currently handled. Alternative of not enabling trigger unless
207 * the relevant function is in there may be the best option.
208 */
209/* Worth protecting against double additions?*/
Jonathan Cameron208b8132011-08-24 17:28:41 +0100210static int iio_trigger_attach_poll_func(struct iio_trigger *trig,
211 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100212{
213 int ret = 0;
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100214 bool notinuse
215 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100216
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100217 /* Prevent the module being removed whilst attached to a trigger */
218 __module_get(pf->indio_dev->info->driver_module);
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100219 pf->irq = iio_trigger_get_irq(trig);
220 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
221 pf->type, pf->name,
222 pf);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100223 if (ret < 0) {
224 module_put(pf->indio_dev->info->driver_module);
225 return ret;
226 }
227
228 if (trig->ops && trig->ops->set_trigger_state && notinuse) {
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100229 ret = trig->ops->set_trigger_state(trig, true);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100230 if (ret < 0)
231 module_put(pf->indio_dev->info->driver_module);
232 }
Jonathan Camerond96d1332011-05-18 14:41:18 +0100233
Jonathan Cameron1637db42009-08-18 18:06:26 +0100234 return ret;
235}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100236
Jonathan Cameron208b8132011-08-24 17:28:41 +0100237static int iio_trigger_dettach_poll_func(struct iio_trigger *trig,
238 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100239{
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100240 int ret = 0;
241 bool no_other_users
242 = (bitmap_weight(trig->pool,
243 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
244 == 1);
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100245 if (trig->ops && trig->ops->set_trigger_state && no_other_users) {
246 ret = trig->ops->set_trigger_state(trig, false);
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100247 if (ret)
248 goto error_ret;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100249 }
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100250 iio_trigger_put_irq(trig, pf->irq);
251 free_irq(pf->irq, pf);
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100252 module_put(pf->indio_dev->info->driver_module);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100253
254error_ret:
255 return ret;
256}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100257
Jonathan Camerond96d1332011-05-18 14:41:18 +0100258irqreturn_t iio_pollfunc_store_time(int irq, void *p)
259{
260 struct iio_poll_func *pf = p;
261 pf->timestamp = iio_get_time_ns();
262 return IRQ_WAKE_THREAD;
263}
264EXPORT_SYMBOL(iio_pollfunc_store_time);
265
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100266struct iio_poll_func
267*iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p),
268 irqreturn_t (*thread)(int irq, void *p),
269 int type,
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100270 struct iio_dev *indio_dev,
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100271 const char *fmt,
272 ...)
273{
274 va_list vargs;
275 struct iio_poll_func *pf;
276
277 pf = kmalloc(sizeof *pf, GFP_KERNEL);
278 if (pf == NULL)
279 return NULL;
280 va_start(vargs, fmt);
281 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
282 va_end(vargs);
283 if (pf->name == NULL) {
284 kfree(pf);
285 return NULL;
286 }
287 pf->h = h;
288 pf->thread = thread;
289 pf->type = type;
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100290 pf->indio_dev = indio_dev;
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100291
292 return pf;
293}
294EXPORT_SYMBOL_GPL(iio_alloc_pollfunc);
295
296void iio_dealloc_pollfunc(struct iio_poll_func *pf)
297{
298 kfree(pf->name);
299 kfree(pf);
300}
301EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);
302
Jonathan Cameron1637db42009-08-18 18:06:26 +0100303/**
Justin P. Mattock42b2aa82011-11-28 20:31:00 -0800304 * iio_trigger_read_current() - trigger consumer sysfs query which trigger
Jonathan Cameron1637db42009-08-18 18:06:26 +0100305 *
306 * For trigger consumers the current_trigger interface allows the trigger
307 * used by the device to be queried.
308 **/
309static ssize_t iio_trigger_read_current(struct device *dev,
310 struct device_attribute *attr,
311 char *buf)
312{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200313 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100314
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100315 if (indio_dev->trig)
316 return sprintf(buf, "%s\n", indio_dev->trig->name);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100317 return 0;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100318}
319
320/**
321 * iio_trigger_write_current() trigger consumer sysfs set current trigger
322 *
323 * For trigger consumers the current_trigger interface allows the trigger
324 * used for this device to be specified at run time based on the triggers
325 * name.
326 **/
327static ssize_t iio_trigger_write_current(struct device *dev,
328 struct device_attribute *attr,
329 const char *buf,
330 size_t len)
331{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200332 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100333 struct iio_trigger *oldtrig = indio_dev->trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100334 struct iio_trigger *trig;
335 int ret;
336
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100337 mutex_lock(&indio_dev->mlock);
338 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
339 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100340 return -EBUSY;
341 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100342 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100343
Michael Hennerich43a43602011-06-27 13:07:09 +0100344 trig = iio_trigger_find_by_name(buf, len);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100345 if (oldtrig == trig)
346 return len;
Michael Hennerich43a43602011-06-27 13:07:09 +0100347
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100348 if (trig && indio_dev->info->validate_trigger) {
349 ret = indio_dev->info->validate_trigger(indio_dev, trig);
Michael Hennerich43a43602011-06-27 13:07:09 +0100350 if (ret)
351 return ret;
352 }
353
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100354 if (trig && trig->ops && trig->ops->validate_device) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100355 ret = trig->ops->validate_device(trig, indio_dev);
Michael Hennerich43a43602011-06-27 13:07:09 +0100356 if (ret)
357 return ret;
358 }
359
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100360 indio_dev->trig = trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100361
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100362 if (oldtrig && indio_dev->trig != oldtrig)
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200363 iio_trigger_put(oldtrig);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100364 if (indio_dev->trig)
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200365 iio_trigger_get(indio_dev->trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100366
367 return len;
368}
369
Greg Kroah-Hartman74112d32010-05-04 22:34:00 -0700370static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
371 iio_trigger_read_current,
372 iio_trigger_write_current);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100373
374static struct attribute *iio_trigger_consumer_attrs[] = {
375 &dev_attr_current_trigger.attr,
376 NULL,
377};
378
379static const struct attribute_group iio_trigger_consumer_attr_group = {
380 .name = "trigger",
381 .attrs = iio_trigger_consumer_attrs,
382};
383
384static void iio_trig_release(struct device *device)
385{
386 struct iio_trigger *trig = to_iio_trigger(device);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100387 int i;
388
389 if (trig->subirq_base) {
390 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
391 irq_modify_status(trig->subirq_base + i,
392 IRQ_NOAUTOEN,
393 IRQ_NOREQUEST | IRQ_NOPROBE);
394 irq_set_chip(trig->subirq_base + i,
395 NULL);
396 irq_set_handler(trig->subirq_base + i,
397 NULL);
398 }
399
400 irq_free_descs(trig->subirq_base,
401 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
402 }
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100403 kfree(trig->name);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100404 kfree(trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100405}
406
407static struct device_type iio_trig_type = {
408 .release = iio_trig_release,
409};
410
Jonathan Camerond96d1332011-05-18 14:41:18 +0100411static void iio_trig_subirqmask(struct irq_data *d)
412{
413 struct irq_chip *chip = irq_data_get_irq_chip(d);
414 struct iio_trigger *trig
415 = container_of(chip,
416 struct iio_trigger, subirq_chip);
417 trig->subirqs[d->irq - trig->subirq_base].enabled = false;
418}
419
420static void iio_trig_subirqunmask(struct irq_data *d)
421{
422 struct irq_chip *chip = irq_data_get_irq_chip(d);
423 struct iio_trigger *trig
424 = container_of(chip,
425 struct iio_trigger, subirq_chip);
426 trig->subirqs[d->irq - trig->subirq_base].enabled = true;
427}
428
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200429struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100430{
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100431 va_list vargs;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100432 struct iio_trigger *trig;
433 trig = kzalloc(sizeof *trig, GFP_KERNEL);
434 if (trig) {
Jonathan Camerond96d1332011-05-18 14:41:18 +0100435 int i;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100436 trig->dev.type = &iio_trig_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100437 trig->dev.bus = &iio_bus_type;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100438 device_initialize(&trig->dev);
439 dev_set_drvdata(&trig->dev, (void *)trig);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100440
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100441 mutex_init(&trig->pool_lock);
442 trig->subirq_base
443 = irq_alloc_descs(-1, 0,
444 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
445 0);
446 if (trig->subirq_base < 0) {
447 kfree(trig);
448 return NULL;
449 }
450 va_start(vargs, fmt);
451 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
452 va_end(vargs);
453 if (trig->name == NULL) {
454 irq_free_descs(trig->subirq_base,
455 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
456 kfree(trig);
457 return NULL;
458 }
459 trig->subirq_chip.name = trig->name;
460 trig->subirq_chip.irq_mask = &iio_trig_subirqmask;
461 trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask;
462 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
463 irq_set_chip(trig->subirq_base + i,
464 &trig->subirq_chip);
465 irq_set_handler(trig->subirq_base + i,
466 &handle_simple_irq);
467 irq_modify_status(trig->subirq_base + i,
468 IRQ_NOREQUEST | IRQ_NOAUTOEN,
469 IRQ_NOPROBE);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100470 }
Jonathan Cameron5f9c0352011-08-24 17:28:33 +0100471 get_device(&trig->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100472 }
473 return trig;
474}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200475EXPORT_SYMBOL(iio_trigger_alloc);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100476
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200477void iio_trigger_free(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100478{
479 if (trig)
480 put_device(&trig->dev);
481}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200482EXPORT_SYMBOL(iio_trigger_free);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100483
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100484void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100485{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100486 indio_dev->groups[indio_dev->groupcounter++] =
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100487 &iio_trigger_consumer_attr_group;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100488}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100489
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100490void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100491{
Jonathan Cameron5f9c0352011-08-24 17:28:33 +0100492 /* Clean up and associated but not attached triggers references */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100493 if (indio_dev->trig)
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200494 iio_trigger_put(indio_dev->trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100495}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100496
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100497int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100498{
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100499 return iio_trigger_attach_poll_func(indio_dev->trig,
500 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100501}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100502EXPORT_SYMBOL(iio_triggered_buffer_postenable);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100503
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100504int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100505{
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100506 return iio_trigger_dettach_poll_func(indio_dev->trig,
507 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100508}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100509EXPORT_SYMBOL(iio_triggered_buffer_predisable);