Commit | Line | Data |
---|---|---|
d2912cb1 | 1 | // SPDX-License-Identifier: GPL-2.0-only |
1637db44 JC |
2 | /* The industrial I/O core, trigger handling functions |
3 | * | |
4 | * Copyright (c) 2008 Jonathan Cameron | |
1637db44 JC |
5 | */ |
6 | ||
095be2d5 | 7 | #include <linux/cleanup.h> |
1637db44 | 8 | #include <linux/kernel.h> |
1637db44 JC |
9 | #include <linux/idr.h> |
10 | #include <linux/err.h> | |
11 | #include <linux/device.h> | |
12 | #include <linux/interrupt.h> | |
13 | #include <linux/list.h> | |
5a0e3ad6 | 14 | #include <linux/slab.h> |
1637db44 | 15 | |
06458e27 | 16 | #include <linux/iio/iio.h> |
6eaf9f6a | 17 | #include <linux/iio/iio-opaque.h> |
06458e27 | 18 | #include <linux/iio/trigger.h> |
df9c1c42 | 19 | #include "iio_core.h" |
6aea1c36 | 20 | #include "iio_core_trigger.h" |
06458e27 | 21 | #include <linux/iio/trigger_consumer.h> |
1637db44 JC |
22 | |
23 | /* RFC - Question of approach | |
24 | * Make the common case (single sensor single trigger) | |
25 | * simple by starting trigger capture from when first sensors | |
26 | * is added. | |
27 | * | |
28 | * Complex simultaneous start requires use of 'hold' functionality | |
29 | * of the trigger. (not implemented) | |
30 | * | |
31 | * Any other suggestions? | |
32 | */ | |
33 | ||
47c24fdd | 34 | static DEFINE_IDA(iio_trigger_ida); |
1637db44 JC |
35 | |
36 | /* Single list of all available triggers */ | |
37 | static LIST_HEAD(iio_trigger_list); | |
38 | static DEFINE_MUTEX(iio_trigger_list_lock); | |
39 | ||
59c85e82 | 40 | /** |
9cf0b618 | 41 | * name_show() - retrieve useful identifying name |
8e563b0d CO |
42 | * @dev: device associated with the iio_trigger |
43 | * @attr: pointer to the device_attribute structure that is | |
44 | * being processed | |
45 | * @buf: buffer to print the name into | |
46 | * | |
47 | * Return: a negative number on failure or the number of written | |
48 | * characters on success. | |
49 | */ | |
9cf0b618 JST |
50 | static ssize_t name_show(struct device *dev, struct device_attribute *attr, |
51 | char *buf) | |
59c85e82 | 52 | { |
971ff1db | 53 | struct iio_trigger *trig = to_iio_trigger(dev); |
9d9ec8d0 | 54 | |
83ca56b6 | 55 | return sysfs_emit(buf, "%s\n", trig->name); |
59c85e82 JC |
56 | } |
57 | ||
9cf0b618 | 58 | static DEVICE_ATTR_RO(name); |
59c85e82 | 59 | |
6d459aa0 LPC |
60 | static struct attribute *iio_trig_dev_attrs[] = { |
61 | &dev_attr_name.attr, | |
62 | NULL, | |
63 | }; | |
f59c2576 | 64 | ATTRIBUTE_GROUPS(iio_trig_dev); |
1637db44 | 65 | |
3b8e73ec CDL |
66 | static struct iio_trigger *__iio_trigger_find_by_name(const char *name); |
67 | ||
bc72d938 | 68 | int iio_trigger_register(struct iio_trigger *trig_info) |
1637db44 JC |
69 | { |
70 | int ret; | |
71 | ||
319dbcd8 | 72 | trig_info->id = ida_alloc(&iio_trigger_ida, GFP_KERNEL); |
92825ff9 HK |
73 | if (trig_info->id < 0) |
74 | return trig_info->id; | |
75 | ||
1637db44 | 76 | /* Set the name used for the sysfs directory etc */ |
ebb9493c | 77 | dev_set_name(&trig_info->dev, "trigger%d", trig_info->id); |
1637db44 JC |
78 | |
79 | ret = device_add(&trig_info->dev); | |
80 | if (ret) | |
81 | goto error_unregister_id; | |
82 | ||
1637db44 | 83 | /* Add to list of available triggers held by the IIO core */ |
095be2d5 NS |
84 | scoped_guard(mutex, &iio_trigger_list_lock) { |
85 | if (__iio_trigger_find_by_name(trig_info->name)) { | |
86 | pr_err("Duplicate trigger name '%s'\n", trig_info->name); | |
87 | ret = -EEXIST; | |
88 | goto error_device_del; | |
89 | } | |
90 | list_add_tail(&trig_info->list, &iio_trigger_list); | |
3b8e73ec | 91 | } |
1637db44 JC |
92 | |
93 | return 0; | |
94 | ||
3b8e73ec | 95 | error_device_del: |
3b8e73ec | 96 | device_del(&trig_info->dev); |
1637db44 | 97 | error_unregister_id: |
319dbcd8 | 98 | ida_free(&iio_trigger_ida, trig_info->id); |
1637db44 JC |
99 | return ret; |
100 | } | |
bc72d938 | 101 | EXPORT_SYMBOL(iio_trigger_register); |
1637db44 JC |
102 | |
103 | void iio_trigger_unregister(struct iio_trigger *trig_info) | |
104 | { | |
095be2d5 NS |
105 | scoped_guard(mutex, &iio_trigger_list_lock) |
106 | list_del(&trig_info->list); | |
1637db44 | 107 | |
319dbcd8 | 108 | ida_free(&iio_trigger_ida, trig_info->id); |
1637db44 | 109 | /* Possible issue in here */ |
8bade406 | 110 | device_del(&trig_info->dev); |
1637db44 JC |
111 | } |
112 | EXPORT_SYMBOL(iio_trigger_unregister); | |
113 | ||
c8cdf708 MR |
114 | int iio_trigger_set_immutable(struct iio_dev *indio_dev, struct iio_trigger *trig) |
115 | { | |
3028e0c2 JC |
116 | struct iio_dev_opaque *iio_dev_opaque; |
117 | ||
c8cdf708 MR |
118 | if (!indio_dev || !trig) |
119 | return -EINVAL; | |
120 | ||
3028e0c2 | 121 | iio_dev_opaque = to_iio_dev_opaque(indio_dev); |
095be2d5 | 122 | guard(mutex)(&iio_dev_opaque->mlock); |
3028e0c2 | 123 | WARN_ON(iio_dev_opaque->trig_readonly); |
c8cdf708 MR |
124 | |
125 | indio_dev->trig = iio_trigger_get(trig); | |
3028e0c2 | 126 | iio_dev_opaque->trig_readonly = true; |
c8cdf708 MR |
127 | |
128 | return 0; | |
129 | } | |
130 | EXPORT_SYMBOL(iio_trigger_set_immutable); | |
131 | ||
3b8e73ec CDL |
132 | /* Search for trigger by name, assuming iio_trigger_list_lock held */ |
133 | static struct iio_trigger *__iio_trigger_find_by_name(const char *name) | |
134 | { | |
135 | struct iio_trigger *iter; | |
136 | ||
137 | list_for_each_entry(iter, &iio_trigger_list, list) | |
138 | if (!strcmp(iter->name, name)) | |
139 | return iter; | |
140 | ||
141 | return NULL; | |
142 | } | |
143 | ||
d5d24bcc | 144 | static struct iio_trigger *iio_trigger_acquire_by_name(const char *name) |
1637db44 | 145 | { |
095be2d5 | 146 | struct iio_trigger *iter; |
7c327857 | 147 | |
095be2d5 | 148 | guard(mutex)(&iio_trigger_list_lock); |
f6517f22 | 149 | list_for_each_entry(iter, &iio_trigger_list, list) |
095be2d5 NS |
150 | if (sysfs_streq(iter->name, name)) |
151 | return iio_trigger_get(iter); | |
1637db44 | 152 | |
095be2d5 | 153 | return NULL; |
5f87404d | 154 | } |
1637db44 | 155 | |
9020ef65 JC |
156 | static void iio_reenable_work_fn(struct work_struct *work) |
157 | { | |
158 | struct iio_trigger *trig = container_of(work, struct iio_trigger, | |
159 | reenable_work); | |
160 | ||
161 | /* | |
162 | * This 'might' occur after the trigger state is set to disabled - | |
163 | * in that case the driver should skip reenabling. | |
164 | */ | |
165 | trig->ops->reenable(trig); | |
166 | } | |
167 | ||
168 | /* | |
169 | * In general, reenable callbacks may need to sleep and this path is | |
170 | * not performance sensitive, so just queue up a work item | |
171 | * to reneable the trigger for us. | |
172 | * | |
173 | * Races that can cause this. | |
174 | * 1) A handler occurs entirely in interrupt context so the counter | |
175 | * the final decrement is still in this interrupt. | |
176 | * 2) The trigger has been removed, but one last interrupt gets through. | |
177 | * | |
178 | * For (1) we must call reenable, but not in atomic context. | |
179 | * For (2) it should be safe to call reenanble, if drivers never blindly | |
180 | * reenable after state is off. | |
181 | */ | |
182 | static void iio_trigger_notify_done_atomic(struct iio_trigger *trig) | |
183 | { | |
184 | if (atomic_dec_and_test(&trig->use_count) && trig->ops && | |
185 | trig->ops->reenable) | |
186 | schedule_work(&trig->reenable_work); | |
187 | } | |
188 | ||
4ad682e0 MD |
189 | /** |
190 | * iio_trigger_poll() - Call the IRQ trigger handler of the consumers | |
191 | * @trig: trigger which occurred | |
192 | * | |
193 | * This function should only be called from a hard IRQ context. | |
194 | */ | |
398fd22b | 195 | void iio_trigger_poll(struct iio_trigger *trig) |
1637db44 | 196 | { |
d96d1337 | 197 | int i; |
a1a8e1dc LPC |
198 | |
199 | if (!atomic_read(&trig->use_count)) { | |
200 | atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
201 | ||
202 | for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) { | |
203 | if (trig->subirqs[i].enabled) | |
d96d1337 | 204 | generic_handle_irq(trig->subirq_base + i); |
a1a8e1dc | 205 | else |
9020ef65 | 206 | iio_trigger_notify_done_atomic(trig); |
a1a8e1dc LPC |
207 | } |
208 | } | |
1637db44 JC |
209 | } |
210 | EXPORT_SYMBOL(iio_trigger_poll); | |
8384d957 JC |
211 | |
212 | irqreturn_t iio_trigger_generic_data_rdy_poll(int irq, void *private) | |
213 | { | |
398fd22b | 214 | iio_trigger_poll(private); |
8384d957 JC |
215 | return IRQ_HANDLED; |
216 | } | |
217 | EXPORT_SYMBOL(iio_trigger_generic_data_rdy_poll); | |
1637db44 | 218 | |
f700e55e MD |
219 | /** |
220 | * iio_trigger_poll_nested() - Call the threaded trigger handler of the | |
221 | * consumers | |
222 | * @trig: trigger which occurred | |
223 | * | |
224 | * This function should only be called from a kernel thread context. | |
225 | */ | |
226 | void iio_trigger_poll_nested(struct iio_trigger *trig) | |
1f785681 JC |
227 | { |
228 | int i; | |
a1a8e1dc LPC |
229 | |
230 | if (!atomic_read(&trig->use_count)) { | |
231 | atomic_set(&trig->use_count, CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
232 | ||
233 | for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) { | |
234 | if (trig->subirqs[i].enabled) | |
1f785681 | 235 | handle_nested_irq(trig->subirq_base + i); |
a1a8e1dc LPC |
236 | else |
237 | iio_trigger_notify_done(trig); | |
238 | } | |
239 | } | |
1f785681 | 240 | } |
f700e55e | 241 | EXPORT_SYMBOL(iio_trigger_poll_nested); |
1f785681 | 242 | |
1637db44 JC |
243 | void iio_trigger_notify_done(struct iio_trigger *trig) |
244 | { | |
04581681 | 245 | if (atomic_dec_and_test(&trig->use_count) && trig->ops && |
eca8523a JC |
246 | trig->ops->reenable) |
247 | trig->ops->reenable(trig); | |
1637db44 JC |
248 | } |
249 | EXPORT_SYMBOL(iio_trigger_notify_done); | |
250 | ||
1637db44 | 251 | /* Trigger Consumer related functions */ |
208b813c JC |
252 | static int iio_trigger_get_irq(struct iio_trigger *trig) |
253 | { | |
254 | int ret; | |
af3bac44 | 255 | |
095be2d5 NS |
256 | scoped_guard(mutex, &trig->pool_lock) { |
257 | ret = bitmap_find_free_region(trig->pool, | |
258 | CONFIG_IIO_CONSUMERS_PER_TRIGGER, | |
259 | ilog2(1)); | |
260 | if (ret < 0) | |
261 | return ret; | |
262 | } | |
208b813c | 263 | |
095be2d5 | 264 | return ret + trig->subirq_base; |
208b813c JC |
265 | } |
266 | ||
267 | static void iio_trigger_put_irq(struct iio_trigger *trig, int irq) | |
268 | { | |
095be2d5 | 269 | guard(mutex)(&trig->pool_lock); |
208b813c | 270 | clear_bit(irq - trig->subirq_base, trig->pool); |
208b813c | 271 | } |
1637db44 JC |
272 | |
273 | /* Complexity in here. With certain triggers (datardy) an acknowledgement | |
274 | * may be needed if the pollfuncs do not include the data read for the | |
275 | * triggering device. | |
276 | * This is not currently handled. Alternative of not enabling trigger unless | |
277 | * the relevant function is in there may be the best option. | |
278 | */ | |
860c9c54 | 279 | /* Worth protecting against double additions? */ |
f11d59d8 LPC |
280 | int iio_trigger_attach_poll_func(struct iio_trigger *trig, |
281 | struct iio_poll_func *pf) | |
1637db44 | 282 | { |
6eaf9f6a | 283 | struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(pf->indio_dev); |
af3bac44 AS |
284 | bool notinuse = |
285 | bitmap_empty(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
1637db44 | 286 | int ret = 0; |
51c060a0 | 287 | |
860c9c54 | 288 | /* Prevent the module from being removed whilst attached to a trigger */ |
6eaf9f6a | 289 | __module_get(iio_dev_opaque->driver_module); |
99543823 CDL |
290 | |
291 | /* Get irq number */ | |
51c060a0 | 292 | pf->irq = iio_trigger_get_irq(trig); |
be35d281 MO |
293 | if (pf->irq < 0) { |
294 | pr_err("Could not find an available irq for trigger %s, CONFIG_IIO_CONSUMERS_PER_TRIGGER=%d limit might be exceeded\n", | |
295 | trig->name, CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
99543823 | 296 | goto out_put_module; |
be35d281 | 297 | } |
99543823 CDL |
298 | |
299 | /* Request irq */ | |
51c060a0 JC |
300 | ret = request_threaded_irq(pf->irq, pf->h, pf->thread, |
301 | pf->type, pf->name, | |
302 | pf); | |
99543823 CDL |
303 | if (ret < 0) |
304 | goto out_put_irq; | |
5dd72ecb | 305 | |
99543823 | 306 | /* Enable trigger in driver */ |
04581681 | 307 | if (trig->ops && trig->ops->set_trigger_state && notinuse) { |
d29f73db | 308 | ret = trig->ops->set_trigger_state(trig, true); |
4dc8f99d | 309 | if (ret) |
99543823 | 310 | goto out_free_irq; |
5dd72ecb | 311 | } |
d96d1337 | 312 | |
702a7b8e LW |
313 | /* |
314 | * Check if we just registered to our own trigger: we determine that | |
315 | * this is the case if the IIO device and the trigger device share the | |
316 | * same parent device. | |
317 | */ | |
74cb2157 | 318 | if (!iio_validate_own_trigger(pf->indio_dev, trig)) |
702a7b8e LW |
319 | trig->attached_own_device = true; |
320 | ||
1637db44 | 321 | return ret; |
99543823 CDL |
322 | |
323 | out_free_irq: | |
324 | free_irq(pf->irq, pf); | |
325 | out_put_irq: | |
326 | iio_trigger_put_irq(trig, pf->irq); | |
327 | out_put_module: | |
6eaf9f6a | 328 | module_put(iio_dev_opaque->driver_module); |
99543823 | 329 | return ret; |
1637db44 | 330 | } |
1637db44 | 331 | |
f11d59d8 LPC |
332 | int iio_trigger_detach_poll_func(struct iio_trigger *trig, |
333 | struct iio_poll_func *pf) | |
1637db44 | 334 | { |
6eaf9f6a | 335 | struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(pf->indio_dev); |
af3bac44 AS |
336 | bool no_other_users = |
337 | bitmap_weight(trig->pool, CONFIG_IIO_CONSUMERS_PER_TRIGGER) == 1; | |
51c060a0 | 338 | int ret = 0; |
af3bac44 | 339 | |
04581681 | 340 | if (trig->ops && trig->ops->set_trigger_state && no_other_users) { |
d29f73db | 341 | ret = trig->ops->set_trigger_state(trig, false); |
51c060a0 | 342 | if (ret) |
92825ff9 | 343 | return ret; |
1637db44 | 344 | } |
702a7b8e LW |
345 | if (pf->indio_dev->dev.parent == trig->dev.parent) |
346 | trig->attached_own_device = false; | |
51c060a0 JC |
347 | iio_trigger_put_irq(trig, pf->irq); |
348 | free_irq(pf->irq, pf); | |
6eaf9f6a | 349 | module_put(iio_dev_opaque->driver_module); |
2837efdc | 350 | pf->irq = 0; |
1637db44 | 351 | |
1637db44 JC |
352 | return ret; |
353 | } | |
1637db44 | 354 | |
d96d1337 JC |
355 | irqreturn_t iio_pollfunc_store_time(int irq, void *p) |
356 | { | |
357 | struct iio_poll_func *pf = p; | |
af3bac44 | 358 | |
bc2b7dab | 359 | pf->timestamp = iio_get_time_ns(pf->indio_dev); |
d96d1337 JC |
360 | return IRQ_WAKE_THREAD; |
361 | } | |
362 | EXPORT_SYMBOL(iio_pollfunc_store_time); | |
363 | ||
21b185f8 JC |
364 | struct iio_poll_func |
365 | *iio_alloc_pollfunc(irqreturn_t (*h)(int irq, void *p), | |
366 | irqreturn_t (*thread)(int irq, void *p), | |
367 | int type, | |
e65bc6ac | 368 | struct iio_dev *indio_dev, |
21b185f8 JC |
369 | const char *fmt, |
370 | ...) | |
371 | { | |
372 | va_list vargs; | |
373 | struct iio_poll_func *pf; | |
374 | ||
ef7cecee | 375 | pf = kmalloc(sizeof(*pf), GFP_KERNEL); |
295cc426 | 376 | if (!pf) |
21b185f8 JC |
377 | return NULL; |
378 | va_start(vargs, fmt); | |
379 | pf->name = kvasprintf(GFP_KERNEL, fmt, vargs); | |
380 | va_end(vargs); | |
381 | if (pf->name == NULL) { | |
382 | kfree(pf); | |
383 | return NULL; | |
384 | } | |
385 | pf->h = h; | |
386 | pf->thread = thread; | |
387 | pf->type = type; | |
e65bc6ac | 388 | pf->indio_dev = indio_dev; |
21b185f8 JC |
389 | |
390 | return pf; | |
391 | } | |
392 | EXPORT_SYMBOL_GPL(iio_alloc_pollfunc); | |
393 | ||
394 | void iio_dealloc_pollfunc(struct iio_poll_func *pf) | |
395 | { | |
396 | kfree(pf->name); | |
397 | kfree(pf); | |
398 | } | |
399 | EXPORT_SYMBOL_GPL(iio_dealloc_pollfunc); | |
400 | ||
1637db44 | 401 | /** |
9cf0b618 | 402 | * current_trigger_show() - trigger consumer sysfs query current trigger |
8e563b0d CO |
403 | * @dev: device associated with an industrial I/O device |
404 | * @attr: pointer to the device_attribute structure that | |
405 | * is being processed | |
406 | * @buf: buffer where the current trigger name will be printed into | |
1637db44 JC |
407 | * |
408 | * For trigger consumers the current_trigger interface allows the trigger | |
409 | * used by the device to be queried. | |
8e563b0d CO |
410 | * |
411 | * Return: a negative number on failure, the number of characters written | |
412 | * on success or 0 if no trigger is available | |
413 | */ | |
9cf0b618 JST |
414 | static ssize_t current_trigger_show(struct device *dev, |
415 | struct device_attribute *attr, char *buf) | |
1637db44 | 416 | { |
e53f5ac5 | 417 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
cb6c89a0 | 418 | |
f8c6f4e9 | 419 | if (indio_dev->trig) |
83ca56b6 | 420 | return sysfs_emit(buf, "%s\n", indio_dev->trig->name); |
cb6c89a0 | 421 | return 0; |
1637db44 JC |
422 | } |
423 | ||
424 | /** | |
9cf0b618 | 425 | * current_trigger_store() - trigger consumer sysfs set current trigger |
8e563b0d CO |
426 | * @dev: device associated with an industrial I/O device |
427 | * @attr: device attribute that is being processed | |
428 | * @buf: string buffer that holds the name of the trigger | |
429 | * @len: length of the trigger name held by buf | |
1637db44 JC |
430 | * |
431 | * For trigger consumers the current_trigger interface allows the trigger | |
17666ef3 | 432 | * used for this device to be specified at run time based on the trigger's |
1637db44 | 433 | * name. |
8e563b0d CO |
434 | * |
435 | * Return: negative error code on failure or length of the buffer | |
436 | * on success | |
437 | */ | |
9cf0b618 JST |
438 | static ssize_t current_trigger_store(struct device *dev, |
439 | struct device_attribute *attr, | |
440 | const char *buf, size_t len) | |
1637db44 | 441 | { |
e53f5ac5 | 442 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
3028e0c2 | 443 | struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev); |
f8c6f4e9 | 444 | struct iio_trigger *oldtrig = indio_dev->trig; |
43a4360e MH |
445 | struct iio_trigger *trig; |
446 | int ret; | |
447 | ||
095be2d5 NS |
448 | scoped_guard(mutex, &iio_dev_opaque->mlock) { |
449 | if (iio_dev_opaque->currentmode == INDIO_BUFFER_TRIGGERED) | |
450 | return -EBUSY; | |
451 | if (iio_dev_opaque->trig_readonly) | |
452 | return -EPERM; | |
c8cdf708 | 453 | } |
1637db44 | 454 | |
d5d24bcc AS |
455 | trig = iio_trigger_acquire_by_name(buf); |
456 | if (oldtrig == trig) { | |
457 | ret = len; | |
458 | goto out_trigger_put; | |
459 | } | |
43a4360e | 460 | |
f8c6f4e9 JC |
461 | if (trig && indio_dev->info->validate_trigger) { |
462 | ret = indio_dev->info->validate_trigger(indio_dev, trig); | |
43a4360e | 463 | if (ret) |
d5d24bcc | 464 | goto out_trigger_put; |
43a4360e MH |
465 | } |
466 | ||
04581681 | 467 | if (trig && trig->ops && trig->ops->validate_device) { |
f8c6f4e9 | 468 | ret = trig->ops->validate_device(trig, indio_dev); |
43a4360e | 469 | if (ret) |
d5d24bcc | 470 | goto out_trigger_put; |
43a4360e MH |
471 | } |
472 | ||
f8c6f4e9 | 473 | indio_dev->trig = trig; |
43a4360e | 474 | |
735ad074 VB |
475 | if (oldtrig) { |
476 | if (indio_dev->modes & INDIO_EVENT_TRIGGERED) | |
477 | iio_trigger_detach_poll_func(oldtrig, | |
478 | indio_dev->pollfunc_event); | |
7cbb7537 | 479 | iio_trigger_put(oldtrig); |
735ad074 VB |
480 | } |
481 | if (indio_dev->trig) { | |
735ad074 VB |
482 | if (indio_dev->modes & INDIO_EVENT_TRIGGERED) |
483 | iio_trigger_attach_poll_func(indio_dev->trig, | |
484 | indio_dev->pollfunc_event); | |
485 | } | |
1637db44 JC |
486 | |
487 | return len; | |
d5d24bcc AS |
488 | |
489 | out_trigger_put: | |
4eecbe81 MN |
490 | if (trig) |
491 | iio_trigger_put(trig); | |
d5d24bcc | 492 | return ret; |
1637db44 JC |
493 | } |
494 | ||
9cf0b618 | 495 | static DEVICE_ATTR_RW(current_trigger); |
1637db44 JC |
496 | |
497 | static struct attribute *iio_trigger_consumer_attrs[] = { | |
498 | &dev_attr_current_trigger.attr, | |
499 | NULL, | |
500 | }; | |
501 | ||
502 | static const struct attribute_group iio_trigger_consumer_attr_group = { | |
503 | .name = "trigger", | |
504 | .attrs = iio_trigger_consumer_attrs, | |
505 | }; | |
506 | ||
507 | static void iio_trig_release(struct device *device) | |
508 | { | |
509 | struct iio_trigger *trig = to_iio_trigger(device); | |
d96d1337 JC |
510 | int i; |
511 | ||
512 | if (trig->subirq_base) { | |
513 | for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) { | |
514 | irq_modify_status(trig->subirq_base + i, | |
515 | IRQ_NOAUTOEN, | |
516 | IRQ_NOREQUEST | IRQ_NOPROBE); | |
517 | irq_set_chip(trig->subirq_base + i, | |
518 | NULL); | |
519 | irq_set_handler(trig->subirq_base + i, | |
520 | NULL); | |
521 | } | |
522 | ||
523 | irq_free_descs(trig->subirq_base, | |
524 | CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
525 | } | |
59c85e82 | 526 | kfree(trig->name); |
1637db44 | 527 | kfree(trig); |
1637db44 JC |
528 | } |
529 | ||
3bdafc49 | 530 | static const struct device_type iio_trig_type = { |
1637db44 | 531 | .release = iio_trig_release, |
f59c2576 | 532 | .groups = iio_trig_dev_groups, |
1637db44 JC |
533 | }; |
534 | ||
d96d1337 JC |
535 | static void iio_trig_subirqmask(struct irq_data *d) |
536 | { | |
537 | struct irq_chip *chip = irq_data_get_irq_chip(d); | |
af3bac44 AS |
538 | struct iio_trigger *trig = container_of(chip, struct iio_trigger, subirq_chip); |
539 | ||
d96d1337 JC |
540 | trig->subirqs[d->irq - trig->subirq_base].enabled = false; |
541 | } | |
542 | ||
543 | static void iio_trig_subirqunmask(struct irq_data *d) | |
544 | { | |
545 | struct irq_chip *chip = irq_data_get_irq_chip(d); | |
af3bac44 AS |
546 | struct iio_trigger *trig = container_of(chip, struct iio_trigger, subirq_chip); |
547 | ||
d96d1337 JC |
548 | trig->subirqs[d->irq - trig->subirq_base].enabled = true; |
549 | } | |
550 | ||
bc72d938 | 551 | static __printf(3, 0) |
995071d3 | 552 | struct iio_trigger *viio_trigger_alloc(struct device *parent, |
bc72d938 | 553 | struct module *this_mod, |
995071d3 GG |
554 | const char *fmt, |
555 | va_list vargs) | |
1637db44 JC |
556 | { |
557 | struct iio_trigger *trig; | |
2c99f1a0 DC |
558 | int i; |
559 | ||
ef7cecee | 560 | trig = kzalloc(sizeof(*trig), GFP_KERNEL); |
2c99f1a0 DC |
561 | if (!trig) |
562 | return NULL; | |
d536321d | 563 | |
995071d3 | 564 | trig->dev.parent = parent; |
2c99f1a0 DC |
565 | trig->dev.type = &iio_trig_type; |
566 | trig->dev.bus = &iio_bus_type; | |
567 | device_initialize(&trig->dev); | |
9020ef65 | 568 | INIT_WORK(&trig->reenable_work, iio_reenable_work_fn); |
2c99f1a0 DC |
569 | |
570 | mutex_init(&trig->pool_lock); | |
571 | trig->subirq_base = irq_alloc_descs(-1, 0, | |
572 | CONFIG_IIO_CONSUMERS_PER_TRIGGER, | |
573 | 0); | |
574 | if (trig->subirq_base < 0) | |
575 | goto free_trig; | |
576 | ||
577 | trig->name = kvasprintf(GFP_KERNEL, fmt, vargs); | |
578 | if (trig->name == NULL) | |
579 | goto free_descs; | |
580 | ||
4a080694 DR |
581 | INIT_LIST_HEAD(&trig->list); |
582 | ||
bc72d938 DR |
583 | trig->owner = this_mod; |
584 | ||
2c99f1a0 DC |
585 | trig->subirq_chip.name = trig->name; |
586 | trig->subirq_chip.irq_mask = &iio_trig_subirqmask; | |
587 | trig->subirq_chip.irq_unmask = &iio_trig_subirqunmask; | |
588 | for (i = 0; i < CONFIG_IIO_CONSUMERS_PER_TRIGGER; i++) { | |
589 | irq_set_chip(trig->subirq_base + i, &trig->subirq_chip); | |
590 | irq_set_handler(trig->subirq_base + i, &handle_simple_irq); | |
591 | irq_modify_status(trig->subirq_base + i, | |
592 | IRQ_NOREQUEST | IRQ_NOAUTOEN, IRQ_NOPROBE); | |
1637db44 | 593 | } |
d536321d JA |
594 | |
595 | return trig; | |
2c99f1a0 DC |
596 | |
597 | free_descs: | |
598 | irq_free_descs(trig->subirq_base, CONFIG_IIO_CONSUMERS_PER_TRIGGER); | |
599 | free_trig: | |
600 | kfree(trig); | |
601 | return NULL; | |
d536321d JA |
602 | } |
603 | ||
995071d3 | 604 | /** |
bc72d938 | 605 | * __iio_trigger_alloc - Allocate a trigger |
995071d3 | 606 | * @parent: Device to allocate iio_trigger for |
bc72d938 | 607 | * @this_mod: module allocating the trigger |
995071d3 GG |
608 | * @fmt: trigger name format. If it includes format |
609 | * specifiers, the additional arguments following | |
610 | * format are formatted and inserted in the resulting | |
611 | * string replacing their respective specifiers. | |
612 | * RETURNS: | |
613 | * Pointer to allocated iio_trigger on success, NULL on failure. | |
614 | */ | |
bc72d938 DR |
615 | struct iio_trigger *__iio_trigger_alloc(struct device *parent, |
616 | struct module *this_mod, | |
617 | const char *fmt, ...) | |
d536321d JA |
618 | { |
619 | struct iio_trigger *trig; | |
620 | va_list vargs; | |
621 | ||
622 | va_start(vargs, fmt); | |
bc72d938 | 623 | trig = viio_trigger_alloc(parent, this_mod, fmt, vargs); |
d536321d JA |
624 | va_end(vargs); |
625 | ||
1637db44 JC |
626 | return trig; |
627 | } | |
bc72d938 | 628 | EXPORT_SYMBOL(__iio_trigger_alloc); |
1637db44 | 629 | |
7cbb7537 | 630 | void iio_trigger_free(struct iio_trigger *trig) |
1637db44 JC |
631 | { |
632 | if (trig) | |
633 | put_device(&trig->dev); | |
634 | } | |
7cbb7537 | 635 | EXPORT_SYMBOL(iio_trigger_free); |
1637db44 | 636 | |
d536321d JA |
637 | static void devm_iio_trigger_release(struct device *dev, void *res) |
638 | { | |
639 | iio_trigger_free(*(struct iio_trigger **)res); | |
640 | } | |
641 | ||
a7e57dce | 642 | /** |
bc72d938 | 643 | * __devm_iio_trigger_alloc - Resource-managed iio_trigger_alloc() |
995071d3 GG |
644 | * Managed iio_trigger_alloc. iio_trigger allocated with this function is |
645 | * automatically freed on driver detach. | |
646 | * @parent: Device to allocate iio_trigger for | |
bc72d938 | 647 | * @this_mod: module allocating the trigger |
a7e57dce SK |
648 | * @fmt: trigger name format. If it includes format |
649 | * specifiers, the additional arguments following | |
650 | * format are formatted and inserted in the resulting | |
651 | * string replacing their respective specifiers. | |
652 | * | |
a7e57dce | 653 | * |
a7e57dce SK |
654 | * RETURNS: |
655 | * Pointer to allocated iio_trigger on success, NULL on failure. | |
656 | */ | |
bc72d938 DR |
657 | struct iio_trigger *__devm_iio_trigger_alloc(struct device *parent, |
658 | struct module *this_mod, | |
659 | const char *fmt, ...) | |
d536321d JA |
660 | { |
661 | struct iio_trigger **ptr, *trig; | |
662 | va_list vargs; | |
663 | ||
664 | ptr = devres_alloc(devm_iio_trigger_release, sizeof(*ptr), | |
665 | GFP_KERNEL); | |
666 | if (!ptr) | |
667 | return NULL; | |
668 | ||
669 | /* use raw alloc_dr for kmalloc caller tracing */ | |
670 | va_start(vargs, fmt); | |
bc72d938 | 671 | trig = viio_trigger_alloc(parent, this_mod, fmt, vargs); |
d536321d JA |
672 | va_end(vargs); |
673 | if (trig) { | |
674 | *ptr = trig; | |
995071d3 | 675 | devres_add(parent, ptr); |
d536321d JA |
676 | } else { |
677 | devres_free(ptr); | |
678 | } | |
679 | ||
680 | return trig; | |
681 | } | |
bc72d938 | 682 | EXPORT_SYMBOL_GPL(__devm_iio_trigger_alloc); |
d536321d | 683 | |
171a70af | 684 | static void devm_iio_trigger_unreg(void *trigger_info) |
9083325f | 685 | { |
171a70af | 686 | iio_trigger_unregister(trigger_info); |
9083325f GB |
687 | } |
688 | ||
689 | /** | |
bc72d938 | 690 | * devm_iio_trigger_register - Resource-managed iio_trigger_register() |
9083325f GB |
691 | * @dev: device this trigger was allocated for |
692 | * @trig_info: trigger to register | |
693 | * | |
694 | * Managed iio_trigger_register(). The IIO trigger registered with this | |
695 | * function is automatically unregistered on driver detach. This function | |
696 | * calls iio_trigger_register() internally. Refer to that function for more | |
697 | * information. | |
698 | * | |
9083325f GB |
699 | * RETURNS: |
700 | * 0 on success, negative error number on failure. | |
701 | */ | |
bc72d938 DR |
702 | int devm_iio_trigger_register(struct device *dev, |
703 | struct iio_trigger *trig_info) | |
9083325f | 704 | { |
9083325f GB |
705 | int ret; |
706 | ||
bc72d938 | 707 | ret = iio_trigger_register(trig_info); |
171a70af YY |
708 | if (ret) |
709 | return ret; | |
9083325f | 710 | |
171a70af | 711 | return devm_add_action_or_reset(dev, devm_iio_trigger_unreg, trig_info); |
9083325f | 712 | } |
bc72d938 | 713 | EXPORT_SYMBOL_GPL(devm_iio_trigger_register); |
9083325f | 714 | |
702a7b8e LW |
715 | bool iio_trigger_using_own(struct iio_dev *indio_dev) |
716 | { | |
717 | return indio_dev->trig->attached_own_device; | |
718 | } | |
719 | EXPORT_SYMBOL(iio_trigger_using_own); | |
720 | ||
517985eb MV |
721 | /** |
722 | * iio_validate_own_trigger - Check if a trigger and IIO device belong to | |
723 | * the same device | |
724 | * @idev: the IIO device to check | |
725 | * @trig: the IIO trigger to check | |
726 | * | |
727 | * This function can be used as the validate_trigger callback for triggers that | |
728 | * can only be attached to their own device. | |
729 | * | |
730 | * Return: 0 if both the trigger and the IIO device belong to the same | |
731 | * device, -EINVAL otherwise. | |
732 | */ | |
733 | int iio_validate_own_trigger(struct iio_dev *idev, struct iio_trigger *trig) | |
734 | { | |
735 | if (idev->dev.parent != trig->dev.parent) | |
736 | return -EINVAL; | |
737 | return 0; | |
738 | } | |
739 | EXPORT_SYMBOL_GPL(iio_validate_own_trigger); | |
740 | ||
43ece27e LPC |
741 | /** |
742 | * iio_trigger_validate_own_device - Check if a trigger and IIO device belong to | |
743 | * the same device | |
744 | * @trig: The IIO trigger to check | |
745 | * @indio_dev: the IIO device to check | |
746 | * | |
747 | * This function can be used as the validate_device callback for triggers that | |
748 | * can only be attached to their own device. | |
749 | * | |
750 | * Return: 0 if both the trigger and the IIO device belong to the same | |
751 | * device, -EINVAL otherwise. | |
752 | */ | |
753 | int iio_trigger_validate_own_device(struct iio_trigger *trig, | |
af3bac44 | 754 | struct iio_dev *indio_dev) |
43ece27e LPC |
755 | { |
756 | if (indio_dev->dev.parent != trig->dev.parent) | |
757 | return -EINVAL; | |
758 | return 0; | |
759 | } | |
760 | EXPORT_SYMBOL(iio_trigger_validate_own_device); | |
761 | ||
e64506bf | 762 | int iio_device_register_trigger_consumer(struct iio_dev *indio_dev) |
1637db44 | 763 | { |
32f17172 AA |
764 | return iio_device_register_sysfs_group(indio_dev, |
765 | &iio_trigger_consumer_attr_group); | |
1637db44 | 766 | } |
1637db44 | 767 | |
f8c6f4e9 | 768 | void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev) |
1637db44 | 769 | { |
860c9c54 | 770 | /* Clean up an associated but not attached trigger reference */ |
f8c6f4e9 | 771 | if (indio_dev->trig) |
7cbb7537 | 772 | iio_trigger_put(indio_dev->trig); |
1637db44 | 773 | } |
2837efdc DB |
774 | |
775 | int iio_device_suspend_triggering(struct iio_dev *indio_dev) | |
776 | { | |
777 | struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev); | |
778 | ||
779 | guard(mutex)(&iio_dev_opaque->mlock); | |
780 | ||
781 | if ((indio_dev->pollfunc) && (indio_dev->pollfunc->irq > 0)) | |
782 | disable_irq(indio_dev->pollfunc->irq); | |
783 | ||
784 | return 0; | |
785 | } | |
786 | EXPORT_SYMBOL(iio_device_suspend_triggering); | |
787 | ||
788 | int iio_device_resume_triggering(struct iio_dev *indio_dev) | |
789 | { | |
790 | struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev); | |
791 | ||
792 | guard(mutex)(&iio_dev_opaque->mlock); | |
793 | ||
794 | if ((indio_dev->pollfunc) && (indio_dev->pollfunc->irq > 0)) | |
795 | enable_irq(indio_dev->pollfunc->irq); | |
796 | ||
797 | return 0; | |
798 | } | |
799 | EXPORT_SYMBOL(iio_device_resume_triggering); |