blob: 98457f044aa54535438d7610997e3c1776d9db04 [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
Crestez Dan Leonard3b8e73e2016-05-23 21:40:01 +030067static struct iio_trigger *__iio_trigger_find_by_name(const char *name);
68
Jonathan Cameron1637db42009-08-18 18:06:26 +010069int iio_trigger_register(struct iio_trigger *trig_info)
70{
71 int ret;
72
Jonathan Cameronef2d71d2016-05-14 18:42:08 +010073 /* trig_info->ops is required for the module member */
74 if (!trig_info->ops)
75 return -EINVAL;
76
Jonathan Cameron47c24fd2011-08-30 12:41:07 +010077 trig_info->id = ida_simple_get(&iio_trigger_ida, 0, 0, GFP_KERNEL);
Hartmut Knaack92825ff2014-02-16 11:53:00 +000078 if (trig_info->id < 0)
79 return trig_info->id;
80
Jonathan Cameron1637db42009-08-18 18:06:26 +010081 /* 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
Jonathan Cameron1637db42009-08-18 18:06:26 +010089 /* Add to list of available triggers held by the IIO core */
90 mutex_lock(&iio_trigger_list_lock);
Crestez Dan Leonard3b8e73e2016-05-23 21:40:01 +030091 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 }
Jonathan Cameron1637db42009-08-18 18:06:26 +010096 list_add_tail(&trig_info->list, &iio_trigger_list);
97 mutex_unlock(&iio_trigger_list_lock);
98
99 return 0;
100
Crestez Dan Leonard3b8e73e2016-05-23 21:40:01 +0300101error_device_del:
102 mutex_unlock(&iio_trigger_list_lock);
103 device_del(&trig_info->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100104error_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 +0100106 return ret;
107}
108EXPORT_SYMBOL(iio_trigger_register);
109
110void iio_trigger_unregister(struct iio_trigger *trig_info)
111{
Jonathan Cameron1637db42009-08-18 18:06:26 +0100112 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameron582e5482011-04-15 18:55:54 +0100113 list_del(&trig_info->list);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100114 mutex_unlock(&iio_trigger_list_lock);
115
Jonathan Cameron47c24fd2011-08-30 12:41:07 +0100116 ida_simple_remove(&iio_trigger_ida, trig_info->id);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100117 /* Possible issue in here */
Jonathan Cameron8bade402013-06-22 12:00:04 +0100118 device_del(&trig_info->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100119}
120EXPORT_SYMBOL(iio_trigger_unregister);
121
Crestez Dan Leonard3b8e73e2016-05-23 21:40:01 +0300122/* 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
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100134static struct iio_trigger *iio_trigger_find_by_name(const char *name,
135 size_t len)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100136{
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100137 struct iio_trigger *trig = NULL, *iter;
Michael Hennerich7c327852010-04-26 10:49:10 +0200138
Jonathan Cameron1637db42009-08-18 18:06:26 +0100139 mutex_lock(&iio_trigger_list_lock);
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100140 list_for_each_entry(iter, &iio_trigger_list, list)
141 if (sysfs_streq(iter->name, name)) {
142 trig = iter;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100143 break;
144 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100145 mutex_unlock(&iio_trigger_list_lock);
146
Jonathan Cameronf6517f22011-04-15 18:55:53 +0100147 return trig;
Jonathan Cameron5f874042010-05-04 22:20:54 +0100148}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100149
Peter Meerwald398fd222014-12-06 06:46:00 +0000150void iio_trigger_poll(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100151{
Jonathan Camerond96d1332011-05-18 14:41:18 +0100152 int i;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100153
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)
Jonathan Camerond96d1332011-05-18 14:41:18 +0100159 generic_handle_irq(trig->subirq_base + i);
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100160 else
161 iio_trigger_notify_done(trig);
162 }
163 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100164}
165EXPORT_SYMBOL(iio_trigger_poll);
166
Jonathan Cameron8384d952011-05-18 14:41:21 +0100167irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private)
168{
Peter Meerwald398fd222014-12-06 06:46:00 +0000169 iio_trigger_poll(private);
Jonathan Cameron8384d952011-05-18 14:41:21 +0100170 return IRQ_HANDLED;
171}
172EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll);
173
Peter Meerwald398fd222014-12-06 06:46:00 +0000174void iio_trigger_poll_chained(struct iio_trigger *trig)
Jonathan Cameron1f785682011-05-18 14:42:11 +0100175{
176 int i;
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100177
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)
Jonathan Cameron1f785682011-05-18 14:42:11 +0100183 handle_nested_irq(trig->subirq_base + i);
Lars-Peter Clausena1a8e1d2013-07-16 15:28:00 +0100184 else
185 iio_trigger_notify_done(trig);
186 }
187 }
Jonathan Cameron1f785682011-05-18 14:42:11 +0100188}
189EXPORT_SYMBOL(iio_trigger_poll_chained);
190
Jonathan Cameron1637db42009-08-18 18:06:26 +0100191void iio_trigger_notify_done(struct iio_trigger *trig)
192{
Jonathan Cameronef2d71d2016-05-14 18:42:08 +0100193 if (atomic_dec_and_test(&trig->use_count) && trig->ops->try_reenable)
Jonathan Camerone69616b2011-10-26 17:27:39 +0100194 if (trig->ops->try_reenable(trig))
Peter Meerwald860c9c52013-02-04 11:36:00 +0000195 /* Missed an interrupt so launch new poll now */
Peter Meerwald398fd222014-12-06 06:46:00 +0000196 iio_trigger_poll(trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100197}
198EXPORT_SYMBOL(iio_trigger_notify_done);
199
Jonathan Cameron1637db42009-08-18 18:06:26 +0100200/* Trigger Consumer related functions */
Jonathan Cameron208b8132011-08-24 17:28:41 +0100201static 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}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100221
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 */
Peter Meerwald860c9c52013-02-04 11:36:00 +0000228/* Worth protecting against double additions? */
Jonathan Cameron208b8132011-08-24 17:28:41 +0100229static int iio_trigger_attach_poll_func(struct iio_trigger *trig,
230 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100231{
232 int ret = 0;
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100233 bool notinuse
234 = bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100235
Peter Meerwald860c9c52013-02-04 11:36:00 +0000236 /* Prevent the module from being removed whilst attached to a trigger */
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100237 __module_get(pf->indio_dev->info->driver_module);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300238
239 /* Get irq number */
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100240 pf->irq = iio_trigger_get_irq(trig);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300241 if (pf->irq < 0)
242 goto out_put_module;
243
244 /* Request irq */
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100245 ret = request_threaded_irq(pf->irq, pf->h, pf->thread,
246 pf->type, pf->name,
247 pf);
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300248 if (ret < 0)
249 goto out_put_irq;
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100250
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300251 /* Enable trigger in driver */
Jonathan Cameronef2d71d2016-05-14 18:42:08 +0100252 if (trig->ops->set_trigger_state && notinuse) {
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100253 ret = trig->ops->set_trigger_state(trig, true);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100254 if (ret < 0)
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300255 goto out_free_irq;
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100256 }
Jonathan Camerond96d1332011-05-18 14:41:18 +0100257
Jonathan Cameron1637db42009-08-18 18:06:26 +0100258 return ret;
Crestez Dan Leonard99543822016-05-03 15:27:09 +0300259
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;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100267}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100268
Peter Meerwald034bd7b2012-07-02 23:43:47 +0200269static int iio_trigger_detach_poll_func(struct iio_trigger *trig,
Jonathan Cameron208b8132011-08-24 17:28:41 +0100270 struct iio_poll_func *pf)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100271{
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100272 int ret = 0;
273 bool no_other_users
274 = (bitmap_weight(trig->pool,
275 CONFIG_IIO_CONSUMERS_PER_TRIGGER)
276 == 1);
Jonathan Cameronef2d71d2016-05-14 18:42:08 +0100277 if (trig->ops->set_trigger_state && no_other_users) {
Jonathan Camerond29f73d2011-08-12 17:08:38 +0100278 ret = trig->ops->set_trigger_state(trig, false);
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100279 if (ret)
Hartmut Knaack92825ff2014-02-16 11:53:00 +0000280 return ret;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100281 }
Jonathan Cameron51c060a2011-05-18 14:41:42 +0100282 iio_trigger_put_irq(trig, pf->irq);
283 free_irq(pf->irq, pf);
Jonathan Cameronf60c4a02011-08-24 17:28:37 +0100284 module_put(pf->indio_dev->info->driver_module);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100285
Jonathan Cameron1637db42009-08-18 18:06:26 +0100286 return ret;
287}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100288
Jonathan Camerond96d1332011-05-18 14:41:18 +0100289irqreturn_t iio_pollfunc_store_time(int irq, void *p)
290{
291 struct iio_poll_func *pf = p;
292 pf->timestamp = iio_get_time_ns();
293 return IRQ_WAKE_THREAD;
294}
295EXPORT_SYMBOL(iio_pollfunc_store_time);
296
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100297struct 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,
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100301 struct iio_dev *indio_dev,
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100302 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;
Jonathan Camerone65bc6a2011-08-24 17:28:36 +0100321 pf->indio_dev = indio_dev;
Jonathan Cameron21b185f2011-05-18 14:42:32 +0100322
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
Jonathan Cameron1637db42009-08-18 18:06:26 +0100334/**
Peter Meerwald860c9c52013-02-04 11:36:00 +0000335 * iio_trigger_read_current() - trigger consumer sysfs query current trigger
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300336 * @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
Jonathan Cameron1637db42009-08-18 18:06:26 +0100340 *
341 * For trigger consumers the current_trigger interface allows the trigger
342 * used by the device to be queried.
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300343 *
344 * Return: a negative number on failure, the number of characters written
345 * on success or 0 if no trigger is available
346 */
Jonathan Cameron1637db42009-08-18 18:06:26 +0100347static ssize_t iio_trigger_read_current(struct device *dev,
348 struct device_attribute *attr,
349 char *buf)
350{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200351 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100352
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100353 if (indio_dev->trig)
354 return sprintf(buf, "%s\n", indio_dev->trig->name);
Jonathan Cameroncb6c89a2011-08-24 17:28:40 +0100355 return 0;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100356}
357
358/**
Peter Meerwald860c9c52013-02-04 11:36:00 +0000359 * iio_trigger_write_current() - trigger consumer sysfs set current trigger
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300360 * @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
Jonathan Cameron1637db42009-08-18 18:06:26 +0100364 *
365 * For trigger consumers the current_trigger interface allows the trigger
Peter Meerwald17666ef2013-11-12 21:49:00 +0000366 * used for this device to be specified at run time based on the trigger's
Jonathan Cameron1637db42009-08-18 18:06:26 +0100367 * name.
Cristina Opriceana8e563b02015-08-06 14:56:02 +0300368 *
369 * Return: negative error code on failure or length of the buffer
370 * on success
371 */
Jonathan Cameron1637db42009-08-18 18:06:26 +0100372static ssize_t iio_trigger_write_current(struct device *dev,
373 struct device_attribute *attr,
374 const char *buf,
375 size_t len)
376{
Lars-Peter Clausene53f5ac2012-05-12 15:39:33 +0200377 struct iio_dev *indio_dev = dev_to_iio_dev(dev);
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100378 struct iio_trigger *oldtrig = indio_dev->trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100379 struct iio_trigger *trig;
380 int ret;
381
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100382 mutex_lock(&indio_dev->mlock);
383 if (indio_dev->currentmode == INDIO_BUFFER_TRIGGERED) {
384 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100385 return -EBUSY;
386 }
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100387 mutex_unlock(&indio_dev->mlock);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100388
Michael Hennerich43a43602011-06-27 13:07:09 +0100389 trig = iio_trigger_find_by_name(buf, len);
Jonathan Cameron5dd72ec2011-10-26 17:27:41 +0100390 if (oldtrig == trig)
391 return len;
Michael Hennerich43a43602011-06-27 13:07:09 +0100392
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100393 if (trig && indio_dev->info->validate_trigger) {
394 ret = indio_dev->info->validate_trigger(indio_dev, trig);
Michael Hennerich43a43602011-06-27 13:07:09 +0100395 if (ret)
396 return ret;
397 }
398
Jonathan Cameronef2d71d2016-05-14 18:42:08 +0100399 if (trig && trig->ops->validate_device) {
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100400 ret = trig->ops->validate_device(trig, indio_dev);
Michael Hennerich43a43602011-06-27 13:07:09 +0100401 if (ret)
402 return ret;
403 }
404
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100405 indio_dev->trig = trig;
Michael Hennerich43a43602011-06-27 13:07:09 +0100406
Vladimir Barinov735ad072015-08-20 22:37:39 +0300407 if (oldtrig) {
408 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
409 iio_trigger_detach_poll_func(oldtrig,
410 indio_dev->pollfunc_event);
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200411 iio_trigger_put(oldtrig);
Vladimir Barinov735ad072015-08-20 22:37:39 +0300412 }
413 if (indio_dev->trig) {
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200414 iio_trigger_get(indio_dev->trig);
Vladimir Barinov735ad072015-08-20 22:37:39 +0300415 if (indio_dev->modes & INDIO_EVENT_TRIGGERED)
416 iio_trigger_attach_poll_func(indio_dev->trig,
417 indio_dev->pollfunc_event);
418 }
Jonathan Cameron1637db42009-08-18 18:06:26 +0100419
420 return len;
421}
422
Greg Kroah-Hartman74112d32010-05-04 22:34:00 -0700423static DEVICE_ATTR(current_trigger, S_IRUGO | S_IWUSR,
424 iio_trigger_read_current,
425 iio_trigger_write_current);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100426
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);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100440 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 }
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100456 kfree(trig->name);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100457 kfree(trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100458}
459
460static struct device_type iio_trig_type = {
461 .release = iio_trig_release,
Axel Linf59c2572013-12-02 02:57:00 +0000462 .groups = iio_trig_dev_groups,
Jonathan Cameron1637db42009-08-18 18:06:26 +0100463};
464
Jonathan Camerond96d1332011-05-18 14:41:18 +0100465static 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
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100483static struct iio_trigger *viio_trigger_alloc(const char *fmt, va_list vargs)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100484{
485 struct iio_trigger *trig;
486 trig = kzalloc(sizeof *trig, GFP_KERNEL);
487 if (trig) {
Jonathan Camerond96d1332011-05-18 14:41:18 +0100488 int i;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100489 trig->dev.type = &iio_trig_type;
Jonathan Cameron5aaaeba2010-05-04 14:43:00 +0100490 trig->dev.bus = &iio_bus_type;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100491 device_initialize(&trig->dev);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100492
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100493 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 }
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100502
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100503 trig->name = kvasprintf(GFP_KERNEL, fmt, vargs);
Jonathan Cameron59c85e82011-05-18 14:42:22 +0100504 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);
Jonathan Camerond96d1332011-05-18 14:41:18 +0100521 }
Jonathan Cameron5f9c0352011-08-24 17:28:33 +0100522 get_device(&trig->dev);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100523 }
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100524
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
Jonathan Cameron1637db42009-08-18 18:06:26 +0100537 return trig;
538}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200539EXPORT_SYMBOL(iio_trigger_alloc);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100540
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200541void iio_trigger_free(struct iio_trigger *trig)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100542{
543 if (trig)
544 put_device(&trig->dev);
545}
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200546EXPORT_SYMBOL(iio_trigger_free);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100547
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100548static 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
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000565/**
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 */
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100582struct 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
Sachin Kamata7e57dc2013-10-29 11:39:00 +0000608/**
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 */
Jacek Anaszewskid5363212013-08-16 14:11:00 +0100615void 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
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100625void iio_device_register_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100626{
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100627 indio_dev->groups[indio_dev->groupcounter++] =
Jonathan Cameron26d25ae2011-09-02 17:14:40 +0100628 &iio_trigger_consumer_attr_group;
Jonathan Cameron1637db42009-08-18 18:06:26 +0100629}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100630
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100631void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
Jonathan Cameron1637db42009-08-18 18:06:26 +0100632{
Peter Meerwald860c9c52013-02-04 11:36:00 +0000633 /* Clean up an associated but not attached trigger reference */
Jonathan Cameronf8c6f4e2011-10-06 17:14:35 +0100634 if (indio_dev->trig)
Lars-Peter Clausen7cbb7532012-04-26 13:35:01 +0200635 iio_trigger_put(indio_dev->trig);
Jonathan Cameron1637db42009-08-18 18:06:26 +0100636}
Jonathan Cameron1637db42009-08-18 18:06:26 +0100637
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100638int iio_triggered_buffer_postenable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100639{
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100640 return iio_trigger_attach_poll_func(indio_dev->trig,
641 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100642}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100643EXPORT_SYMBOL(iio_triggered_buffer_postenable);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100644
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100645int iio_triggered_buffer_predisable(struct iio_dev *indio_dev)
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100646{
Peter Meerwald034bd7b2012-07-02 23:43:47 +0200647 return iio_trigger_detach_poll_func(indio_dev->trig,
Jonathan Cameron67be8e32011-10-26 17:27:38 +0100648 indio_dev->pollfunc);
Jonathan Cameronc3db00c2010-07-11 16:39:10 +0100649}
Jonathan Cameron3b99fb72011-09-21 11:15:53 +0100650EXPORT_SYMBOL(iio_triggered_buffer_predisable);