Jonathan Cameron | e64e7d5 | 2013-04-14 12:54:00 +0100 | [diff] [blame] | 1 | # |
| 2 | # Industrial I/O standalone triggers |
| 3 | # |
Lars-Peter Clausen | 3edc84e | 2013-07-15 08:45:00 +0100 | [diff] [blame] | 4 | # When adding new entries keep the list in alphabetical order |
| 5 | |
Jonathan Cameron | e64e7d5 | 2013-04-14 12:54:00 +0100 | [diff] [blame] | 6 | menu "Triggers - standalone" |
| 7 | |
Daniel Baluta | ac5006a | 2015-11-09 09:14:01 +0200 | [diff] [blame] | 8 | config IIO_HRTIMER_TRIGGER |
| 9 | tristate "High resolution timer trigger" |
| 10 | depends on IIO_SW_TRIGGER |
| 11 | help |
| 12 | Provides a frequency based IIO trigger using high resolution |
| 13 | timers as interrupt source. |
| 14 | |
| 15 | To compile this driver as a module, choose M here: the |
| 16 | module will be called iio-trig-hrtimer. |
| 17 | |
Jonathan Cameron | c7a8be0 | 2013-06-02 20:00:00 +0100 | [diff] [blame] | 18 | config IIO_INTERRUPT_TRIGGER |
| 19 | tristate "Generic interrupt trigger" |
| 20 | help |
| 21 | Provides support for using an interrupt of any type as an IIO |
| 22 | trigger. This may be provided by a gpio driver for example. |
| 23 | |
| 24 | To compile this driver as a module, choose M here: the |
| 25 | module will be called iio-trig-interrupt. |
| 26 | |
Benjamin Gaignard | 93fbe91 | 2017-01-20 10:15:07 +0100 | [diff] [blame] | 27 | config IIO_STM32_TIMER_TRIGGER |
| 28 | tristate "STM32 Timer Trigger" |
| 29 | depends on (ARCH_STM32 && OF && MFD_STM32_TIMERS) || COMPILE_TEST |
| 30 | help |
| 31 | Select this option to enable STM32 Timer Trigger |
| 32 | |
| 33 | To compile this driver as a module, choose M here: the |
| 34 | module will be called stm32-timer-trigger. |
| 35 | |
Jonathan Cameron | bc2e112 | 2016-03-06 20:02:56 +0000 | [diff] [blame] | 36 | config IIO_TIGHTLOOP_TRIGGER |
| 37 | tristate "A kthread based hammering loop trigger" |
| 38 | depends on IIO_SW_TRIGGER |
| 39 | help |
| 40 | An experimental trigger, used to allow sensors to be sampled as fast |
| 41 | as possible under the limitations of whatever else is going on. |
| 42 | Uses a tight loop in a kthread. Will only work with lower half only |
| 43 | trigger consumers. |
| 44 | |
| 45 | To compile this driver as a module, choose M here: the |
| 46 | module will be called iio-trig-loop. |
| 47 | |
Jonathan Cameron | e64e7d5 | 2013-04-14 12:54:00 +0100 | [diff] [blame] | 48 | config IIO_SYSFS_TRIGGER |
| 49 | tristate "SYSFS trigger" |
| 50 | depends on SYSFS |
| 51 | select IRQ_WORK |
| 52 | help |
Peter Meerwald | 93232cd | 2013-06-23 22:28:00 +0100 | [diff] [blame] | 53 | Provides support for using SYSFS entries as IIO triggers. |
Jonathan Cameron | e64e7d5 | 2013-04-14 12:54:00 +0100 | [diff] [blame] | 54 | If unsure, say N (but it's safe to say "Y"). |
| 55 | |
| 56 | To compile this driver as a module, choose M here: the |
| 57 | module will be called iio-trig-sysfs. |
| 58 | |
| 59 | endmenu |