blob: 0c52dfe649771db4a4a23e7e09365dbbc33932e1 [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
Cristina Opriceana8e563b02015-08-06 14:56:02 +030043 * @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 */
Jonathan Cameron59c85e82011-05-18 14:42:22 +010051static ssize_t iio_trigger_read_name(struct device *dev,
52 struct device_attribute *attr,
53 char *buf)
54{
Lars-Peter Clausen971ff1d2012-06-21 19:11:00 +020055 struct iio_trigger *trig = to_iio_trigger(dev);
Jonathan Cameron59c85e82011-05-18 14:42:22 +010056 return sprintf(buf, "%s\n", trig->name);
57}
58
59static DEVICE_ATTR(name, S_IRUGO, iio_trigger_read_name, NULL);
60
Lars-Peter Clausen6d459aa2012-07-05 10:57:06 +020061static struct attribute *iio_trig_dev_attrs[] = {
62 &dev_attr_name.attr,
63 NULL,
64};
Axel Linf59c2572013-12-02 02:57:00 +000065ATTRIBUTE_GROUPS(iio_trig_dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +010066
Jonathan Cameron1637db42009-08-18 18:06:26 +010067int iio_trigger_register(struct iio_trigger *trig_info)
68{
69 int ret;
70
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010071 trig_info->id = ida_simple_get(&iio_trigger_ida, 0, 0, GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +000072 if (trig_info->id < 0)
73 return trig_info->id;
74
Jonathan Cameron1637db42009-08-18 18:06:26 +010075 /* Set the name used for the sysfs directory etc */
76 dev_set_name(&trig_info->dev, "trigger%ld",
77 (unsigned long) trig_info->id);
78
79 ret = device_add(&trig_info->dev);
80 if (ret)
81 goto error_unregister_id;
82
Jonathan Cameron1637db42009-08-18 18:06:26 +010083 /* Add to list of available triggers held by the IIO core */
84 mutex_lock(&iio_trigger_list_lock);
85 list_add_tail(&trig_info->list, &iio_trigger_list);
86 mutex_unlock(&iio_trigger_list_lock);
87
88 return 0;
89
Jonathan Cameron1637db42009-08-18 18:06:26 +010090error_unregister_id:
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010091 ida_simple_remove(&iio_trigger_ida, trig_info->id);
Jonathan Cameron1637db42009-08-18 18:06:26 +010092 return ret;
93}
94EXPORT_SYMBOL(iio_trigger_register);
95
96void iio_trigger_unregister(struct iio_trigger *trig_info)
97{
Jonathan Cameron1637db42009-08-18 18:06:26 +010098 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameron582e5482011-04-15 18:55:54 +010099 list_del(&trig_info->list);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100100 mutex_unlock(&iio_trigger_list_lock);
101
Jonathan Cameron47c24fd2011-08-30 12:41:07 +0100102 ida_simple_remove(&iio_trigger_ida, trig_info->id);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100103 /* Possible issue in here */
Jonathan Cameron8bade402013-06-22 12:00:04 +0100104 device_del(&trig_info->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100105}
106EXPORT_SYMBOL(iio_trigger_unregister);
107
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100108static struct iio_trigger *iio_trigger_find_by_name(const char *name,
109 size_t len)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100110{
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100111 struct iio_trigger *trig = NULL, *iter;
Michael Hennerich7c327852010-04-26 10:49:10 +0200112
Jonathan Cameron1637db42009-08-18 18:06:26 +0100113 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100114 list_for_each_entry(iter, &iio_trigger_list, list)
115 if (sysfs_streq(iter->name, name)) {
116 trig = iter;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100117 break;
118 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100119 mutex_unlock(&iio_trigger_list_lock);
120
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100121 return trig;
Jonathan Cameron5f874042010-05-04 22:20:54 +0100122}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100123
Peter Meerwald398fd222014-12-06 06:46:00 +0000124void iio_trigger_poll(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100125{
Jonathan Camerond96d1332011-05-18 14:41:18 +0100126 int i;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100127
128 if (!atomic_read(&trig->use_count)) {
129 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
130
131 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
132 if (trig->subirqs[i].enabled)
Jonathan Camerond96d1332011-05-18 14:41:18 +0100133 generic_handle_irq(trig->subirq_base + i);
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100134 else
135 iio_trigger_notify_done(trig);
136 }
137 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100138}
139EXPORT_SYMBOL(iio_trigger_poll);
140
Jonathan Cameron8384d952011-05-18 14:41:21 +0100141irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
142{
Peter Meerwald398fd222014-12-06 06:46:00 +0000143 iio_trigger_poll(private);
Jonathan Cameron8384d952011-05-18 14:41:21 +0100144 return IRQ_HANDLED;
145}
146EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
147
Peter Meerwald398fd222014-12-06 06:46:00 +0000148void iio_trigger_poll_chained(struct iio_trigger *trig)
Jonathan Cameron1f785682011-05-18 14:42:11 +0100149{
150 int i;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100151
152 if (!atomic_read(&trig->use_count)) {
153 atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
154
155 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
156 if (trig->subirqs[i].enabled)
Jonathan Cameron1f785682011-05-18 14:42:11 +0100157 handle_nested_irq(trig->subirq_base + i);
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100158 else
159 iio_trigger_notify_done(trig);
160 }
161 }
Jonathan Cameron1f785682011-05-18 14:42:11 +0100162}
163EXPORT_SYMBOL(iio_trigger_poll_chained);
164
Jonathan Cameron1637db42009-08-18 18:06:26 +0100165void iio_trigger_notify_done(struct iio_trigger *trig)
166{
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100167 if (atomic_dec_and_test(&trig->use_count) && trig->ops &&
168 trig->ops->try_reenable)
Jonathan Camerone69616b2011-10-26 17:27:39 +0100169 if (trig->ops->try_reenable(trig))
Peter Meerwald860c9c52013-02-04 11:36:00 +0000170 /* Missed an interrupt so launch new poll now */
Peter Meerwald398fd222014-12-06 06:46:00 +0000171 iio_trigger_poll(trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100172}
173EXPORT_SYMBOL(iio_trigger_notify_done);
174
Jonathan Cameron1637db42009-08-18 18:06:26 +0100175/* Trigger Consumer related functions */
Jonathan Cameron208b8132011-08-24 17:28:41 +0100176static int iio_trigger_get_irq(struct iio_trigger *trig)
177{
178 int ret;
179 mutex_lock(&trig->pool_lock);
180 ret = bitmap_find_free_region(trig->pool,
181 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
182 ilog2(1));
183 mutex_unlock(&trig->pool_lock);
184 if (ret >= 0)
185 ret += trig->subirq_base;
186
187 return ret;
188}
189
190static void iio_trigger_put_irq(struct iio_trigger *trig, int irq)
191{
192 mutex_lock(&trig->pool_lock);
193 clear_bit(irq - trig->subirq_base, trig->pool);
194 mutex_unlock(&trig->pool_lock);
195}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100196
197/* Complexity in here. With certain triggers (datardy) an acknowledgement
198 * may be needed if the pollfuncs do not include the data read for the
199 * triggering device.
200 * This is not currently handled. Alternative of not enabling trigger unless
201 * the relevant function is in there may be the best option.
202 */
Peter Meerwald860c9c52013-02-04 11:36:00 +0000203/* Worth protecting against double additions? */
Jonathan Cameron208b8132011-08-24 17:28:41 +0100204static int iio_trigger_attach_poll_func(struct iio_trigger *trig,
205 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100206{
207 int ret = 0;
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100208 bool notinuse
209 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100210
Peter Meerwald860c9c52013-02-04 11:36:00 +0000211 /* Prevent the module from being removed whilst attached to a trigger */
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100212 __module_get(pf->indio_dev->info->driver_module);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300213
214 /* Get irq number */
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100215 pf->irq = iio_trigger_get_irq(trig);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300216 if (pf->irq < 0)
217 goto out_put_module;
218
219 /* Request irq */
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100220 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
221 pf->type, pf->name,
222 pf);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300223 if (ret < 0)
224 goto out_put_irq;
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100225
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300226 /* Enable trigger in driver */
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100227 if (trig->ops && trig->ops->set_trigger_state && notinuse) {
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100228 ret = trig->ops->set_trigger_state(trig, true);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100229 if (ret < 0)
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300230 goto out_free_irq;
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100231 }
Jonathan Camerond96d1332011-05-18 14:41:18 +0100232
Jonathan Cameron1637db42009-08-18 18:06:26 +0100233 return ret;
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300234
235out_free_irq:
236 free_irq(pf->irq, pf);
237out_put_irq:
238 iio_trigger_put_irq(trig, pf->irq);
239out_put_module:
240 module_put(pf->indio_dev->info->driver_module);
241 return ret;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100242}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100243
Peter Meerwald034bd7b2012-07-02 23:43:47 +0200244static int iio_trigger_detach_poll_func(struct iio_trigger *trig,
Jonathan Cameron208b8132011-08-24 17:28:41 +0100245 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100246{
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100247 int ret = 0;
248 bool no_other_users
249 = (bitmap_weight(trig->pool,
250 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
251 == 1);
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100252 if (trig->ops && trig->ops->set_trigger_state && no_other_users) {
253 ret = trig->ops->set_trigger_state(trig, false);
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100254 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000255 return ret;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100256 }
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100257 iio_trigger_put_irq(trig, pf->irq);
258 free_irq(pf->irq, pf);
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100259 module_put(pf->indio_dev->info->driver_module);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100260
Jonathan Cameron1637db42009-08-18 18:06:26 +0100261 return ret;
262}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100263
Jonathan Camerond96d1332011-05-18 14:41:18 +0100264irqreturn_t iio_pollfunc_store_time(int irq, void *p)
265{
266 struct iio_poll_func *pf = p;
267 pf->timestamp = iio_get_time_ns();
268 return IRQ_WAKE_THREAD;
269}
270EXPORT_SYMBOL(iio_pollfunc_store_time);
271
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100272struct iio_poll_func
273*iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p),
274 irqreturn_t (*thread)(int irq, void *p),
275 int type,
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100276 struct iio_dev *indio_dev,
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100277 const char *fmt,
278 ...)
279{
280 va_list vargs;
281 struct iio_poll_func *pf;
282
283 pf = kmalloc(sizeof *pf, GFP_KERNEL);
284 if (pf == NULL)
285 return NULL;
286 va_start(vargs, fmt);
287 pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
288 va_end(vargs);
289 if (pf->name == NULL) {
290 kfree(pf);
291 return NULL;
292 }
293 pf->h = h;
294 pf->thread = thread;
295 pf->type = type;
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100296 pf->indio_dev = indio_dev;
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100297
298 return pf;
299}
300EXPORT_SYMBOL_GPL(iio_alloc_pollfunc);
301
302void iio_dealloc_pollfunc(struct iio_poll_func *pf)
303{
304 kfree(pf->name);
305 kfree(pf);
306}
307EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc);
308
Jonathan Cameron1637db42009-08-18 18:06:26 +0100309/**
Peter Meerwald860c9c52013-02-04 11:36:00 +0000310 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300311 * @dev: device associated with an industrial I/O device
312 * @attr: pointer to the device_attribute structure that
313 * is being processed
314 * @buf: buffer where the current trigger name will be printed into
Jonathan Cameron1637db42009-08-18 18:06:26 +0100315 *
316 * For trigger consumers the current_trigger interface allows the trigger
317 * used by the device to be queried.
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300318 *
319 * Return: a negative number on failure, the number of characters written
320 * on success or 0 if no trigger is available
321 */
Jonathan Cameron1637db42009-08-18 18:06:26 +0100322static ssize_t iio_trigger_read_current(struct device *dev,
323 struct device_attribute *attr,
324 char *buf)
325{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200326 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100327
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100328 if (indio_dev->trig)
329 return sprintf(buf, "%s\n", indio_dev->trig->name);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100330 return 0;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100331}
332
333/**
Peter Meerwald860c9c52013-02-04 11:36:00 +0000334 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300335 * @dev: device associated with an industrial I/O device
336 * @attr: device attribute that is being processed
337 * @buf: string buffer that holds the name of the trigger
338 * @len: length of the trigger name held by buf
Jonathan Cameron1637db42009-08-18 18:06:26 +0100339 *
340 * For trigger consumers the current_trigger interface allows the trigger
Peter Meerwald17666ef2013-11-12 21:49:00 +0000341 * used for this device to be specified at run time based on the trigger's
Jonathan Cameron1637db42009-08-18 18:06:26 +0100342 * name.
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300343 *
344 * Return: negative error code on failure or length of the buffer
345 * on success
346 */
Jonathan Cameron1637db42009-08-18 18:06:26 +0100347static ssize_t iio_trigger_write_current(struct device *dev,
348 struct device_attribute *attr,
349 const char *buf,
350 size_t len)
351{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200352 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100353 struct iio_trigger *oldtrig = indio_dev->trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100354 struct iio_trigger *trig;
355 int ret;
356
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100357 mutex_lock(&indio_dev->mlock);
358 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
359 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100360 return -EBUSY;
361 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100362 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100363
Michael Hennerich43a43602011-06-27 13:07:09 +0100364 trig = iio_trigger_find_by_name(buf, len);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100365 if (oldtrig == trig)
366 return len;
Michael Hennerich43a43602011-06-27 13:07:09 +0100367
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100368 if (trig && indio_dev->info->validate_trigger) {
369 ret = indio_dev->info->validate_trigger(indio_dev, trig);
Michael Hennerich43a43602011-06-27 13:07:09 +0100370 if (ret)
371 return ret;
372 }
373
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100374 if (trig && trig->ops && trig->ops->validate_device) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100375 ret = trig->ops->validate_device(trig, indio_dev);
Michael Hennerich43a43602011-06-27 13:07:09 +0100376 if (ret)
377 return ret;
378 }
379
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100380 indio_dev->trig = trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100381
Vladimir Barinov735ad072015-08-20 22:37:39 +0300382 if (oldtrig) {
383 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
384 iio_trigger_detach_poll_func(oldtrig,
385 indio_dev->pollfunc_event);
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200386 iio_trigger_put(oldtrig);
Vladimir Barinov735ad072015-08-20 22:37:39 +0300387 }
388 if (indio_dev->trig) {
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200389 iio_trigger_get(indio_dev->trig);
Vladimir Barinov735ad072015-08-20 22:37:39 +0300390 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
391 iio_trigger_attach_poll_func(indio_dev->trig,
392 indio_dev->pollfunc_event);
393 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100394
395 return len;
396}
397
Greg Kroah-Hartman74112d32010-05-04 22:34:00 -0700398static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
399 iio_trigger_read_current,
400 iio_trigger_write_current);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100401
402static struct attribute *iio_trigger_consumer_attrs[] = {
403 &dev_attr_current_trigger.attr,
404 NULL,
405};
406
407static const struct attribute_group iio_trigger_consumer_attr_group = {
408 .name = "trigger",
409 .attrs = iio_trigger_consumer_attrs,
410};
411
412static void iio_trig_release(struct device *device)
413{
414 struct iio_trigger *trig = to_iio_trigger(device);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100415 int i;
416
417 if (trig->subirq_base) {
418 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
419 irq_modify_status(trig->subirq_base + i,
420 IRQ_NOAUTOEN,
421 IRQ_NOREQUEST | IRQ_NOPROBE);
422 irq_set_chip(trig->subirq_base + i,
423 NULL);
424 irq_set_handler(trig->subirq_base + i,
425 NULL);
426 }
427
428 irq_free_descs(trig->subirq_base,
429 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
430 }
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100431 kfree(trig->name);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100432 kfree(trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100433}
434
435static struct device_type iio_trig_type = {
436 .release = iio_trig_release,
Axel Linf59c2572013-12-02 02:57:00 +0000437 .groups = iio_trig_dev_groups,
Jonathan Cameron1637db42009-08-18 18:06:26 +0100438};
439
Jonathan Camerond96d1332011-05-18 14:41:18 +0100440static void iio_trig_subirqmask(struct irq_data *d)
441{
442 struct irq_chip *chip = irq_data_get_irq_chip(d);
443 struct iio_trigger *trig
444 = container_of(chip,
445 struct iio_trigger, subirq_chip);
446 trig->subirqs[d->irq - trig->subirq_base].enabled = false;
447}
448
449static void iio_trig_subirqunmask(struct irq_data *d)
450{
451 struct irq_chip *chip = irq_data_get_irq_chip(d);
452 struct iio_trigger *trig
453 = container_of(chip,
454 struct iio_trigger, subirq_chip);
455 trig->subirqs[d->irq - trig->subirq_base].enabled = true;
456}
457
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100458static struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100459{
460 struct iio_trigger *trig;
461 trig = kzalloc(sizeof *trig, GFP_KERNEL);
462 if (trig) {
Jonathan Camerond96d1332011-05-18 14:41:18 +0100463 int i;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100464 trig->dev.type = &iio_trig_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100465 trig->dev.bus = &iio_bus_type;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100466 device_initialize(&trig->dev);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100467
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100468 mutex_init(&trig->pool_lock);
469 trig->subirq_base
470 = irq_alloc_descs(-1, 0,
471 CONFIG_IIO_CONSUMERS_PER_TRIGGER,
472 0);
473 if (trig->subirq_base < 0) {
474 kfree(trig);
475 return NULL;
476 }
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100477
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100478 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100479 if (trig->name == NULL) {
480 irq_free_descs(trig->subirq_base,
481 CONFIG_IIO_CONSUMERS_PER_TRIGGER);
482 kfree(trig);
483 return NULL;
484 }
485 trig->subirq_chip.name = trig->name;
486 trig->subirq_chip.irq_mask = &iio_trig_subirqmask;
487 trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask;
488 for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) {
489 irq_set_chip(trig->subirq_base + i,
490 &trig->subirq_chip);
491 irq_set_handler(trig->subirq_base + i,
492 &handle_simple_irq);
493 irq_modify_status(trig->subirq_base + i,
494 IRQ_NOREQUEST | IRQ_NOAUTOEN,
495 IRQ_NOPROBE);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100496 }
Jonathan Cameron5f9c0352011-08-24 17:28:33 +0100497 get_device(&trig->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100498 }
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100499
500 return trig;
501}
502
503struct iio_trigger *iio_trigger_alloc(const char *fmt, ...)
504{
505 struct iio_trigger *trig;
506 va_list vargs;
507
508 va_start(vargs, fmt);
509 trig = viio_trigger_alloc(fmt, vargs);
510 va_end(vargs);
511
Jonathan Cameron1637db42009-08-18 18:06:26 +0100512 return trig;
513}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200514EXPORT_SYMBOL(iio_trigger_alloc);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100515
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200516void iio_trigger_free(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100517{
518 if (trig)
519 put_device(&trig->dev);
520}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200521EXPORT_SYMBOL(iio_trigger_free);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100522
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100523static void devm_iio_trigger_release(struct device *dev, void *res)
524{
525 iio_trigger_free(*(struct iio_trigger **)res);
526}
527
528static int devm_iio_trigger_match(struct device *dev, void *res, void *data)
529{
530 struct iio_trigger **r = res;
531
532 if (!r || !*r) {
533 WARN_ON(!r || !*r);
534 return 0;
535 }
536
537 return *r == data;
538}
539
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000540/**
541 * devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc()
542 * @dev: Device to allocate iio_trigger for
543 * @fmt: trigger name format. If it includes format
544 * specifiers, the additional arguments following
545 * format are formatted and inserted in the resulting
546 * string replacing their respective specifiers.
547 *
548 * Managed iio_trigger_alloc. iio_trigger allocated with this function is
549 * automatically freed on driver detach.
550 *
551 * If an iio_trigger allocated with this function needs to be freed separately,
552 * devm_iio_trigger_free() must be used.
553 *
554 * RETURNS:
555 * Pointer to allocated iio_trigger on success, NULL on failure.
556 */
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100557struct iio_trigger *devm_iio_trigger_alloc(struct device *dev,
558 const char *fmt, ...)
559{
560 struct iio_trigger **ptr, *trig;
561 va_list vargs;
562
563 ptr = devres_alloc(devm_iio_trigger_release, sizeof(*ptr),
564 GFP_KERNEL);
565 if (!ptr)
566 return NULL;
567
568 /* use raw alloc_dr for kmalloc caller tracing */
569 va_start(vargs, fmt);
570 trig = viio_trigger_alloc(fmt, vargs);
571 va_end(vargs);
572 if (trig) {
573 *ptr = trig;
574 devres_add(dev, ptr);
575 } else {
576 devres_free(ptr);
577 }
578
579 return trig;
580}
581EXPORT_SYMBOL_GPL(devm_iio_trigger_alloc);
582
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000583/**
584 * devm_iio_trigger_free - Resource-managed iio_trigger_free()
585 * @dev: Device this iio_dev belongs to
586 * @iio_trig: the iio_trigger associated with the device
587 *
588 * Free iio_trigger allocated with devm_iio_trigger_alloc().
589 */
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100590void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig)
591{
592 int rc;
593
594 rc = devres_release(dev, devm_iio_trigger_release,
595 devm_iio_trigger_match, iio_trig);
596 WARN_ON(rc);
597}
598EXPORT_SYMBOL_GPL(devm_iio_trigger_free);
599
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100600void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100601{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100602 indio_dev->groups[indio_dev->groupcounter++] =
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100603 &iio_trigger_consumer_attr_group;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100604}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100605
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100606void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100607{
Peter Meerwald860c9c52013-02-04 11:36:00 +0000608 /* Clean up an associated but not attached trigger reference */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100609 if (indio_dev->trig)
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200610 iio_trigger_put(indio_dev->trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100611}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100612
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100613int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100614{
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100615 return iio_trigger_attach_poll_func(indio_dev->trig,
616 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100617}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100618EXPORT_SYMBOL(iio_triggered_buffer_postenable);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100619
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100620int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100621{
Peter Meerwald034bd7b2012-07-02 23:43:47 +0200622 return iio_trigger_detach_poll_func(indio_dev->trig,
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100623 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100624}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100625EXPORT_SYMBOL(iio_triggered_buffer_predisable);