xref: /openbmc/linux/drivers/iio/Kconfig (revision a529ae4b)
1a980e046SJonathan Cameron#
2a980e046SJonathan Cameron# Industrial I/O subsytem configuration
3a980e046SJonathan Cameron#
4a980e046SJonathan Cameron
5a980e046SJonathan Cameronmenuconfig IIO
6a980e046SJonathan Cameron	tristate "Industrial I/O support"
7a980e046SJonathan Cameron	depends on GENERIC_HARDIRQS
8a980e046SJonathan Cameron	help
9a980e046SJonathan Cameron	  The industrial I/O subsystem provides a unified framework for
10a980e046SJonathan Cameron	  drivers for many different types of embedded sensors using a
11*a529ae4bSJiri Kosina	  number of different physical interfaces (i2c, spi, etc).
12a980e046SJonathan Cameron
13a980e046SJonathan Cameronif IIO
14a980e046SJonathan Cameron
15a980e046SJonathan Cameronconfig IIO_BUFFER
16a980e046SJonathan Cameron	bool "Enable buffer support within IIO"
17a980e046SJonathan Cameron	help
18a980e046SJonathan Cameron	  Provide core support for various buffer based data
19a980e046SJonathan Cameron	  acquisition methods.
20a980e046SJonathan Cameron
21a980e046SJonathan Cameronif IIO_BUFFER
22a980e046SJonathan Cameron
23a980e046SJonathan Cameronconfig IIO_KFIFO_BUF
24a980e046SJonathan Cameron	select IIO_TRIGGER
25a980e046SJonathan Cameron	tristate "Industrial I/O buffering based on kfifo"
26a980e046SJonathan Cameron	help
27a980e046SJonathan Cameron	  A simple fifo based on kfifo.  Use this if you want a fifo
28a980e046SJonathan Cameron	  rather than a ring buffer. Note that this currently provides
29a980e046SJonathan Cameron	  no buffer events so it is up to userspace to work out how
30a980e046SJonathan Cameron	  often to read from the buffer.
31a980e046SJonathan Cameron
32a980e046SJonathan Cameronendif # IIO_BUFFER
33a980e046SJonathan Cameron
34a980e046SJonathan Cameronconfig IIO_TRIGGER
35a980e046SJonathan Cameron	boolean "Enable triggered sampling support"
36a980e046SJonathan Cameron	help
37a980e046SJonathan Cameron	  Provides IIO core support for triggers.  Currently these
38a980e046SJonathan Cameron	  are used to initialize capture of samples to push into
39a980e046SJonathan Cameron	  ring buffers.  The triggers are effectively a 'capture
40a980e046SJonathan Cameron	  data now' interrupt.
41a980e046SJonathan Cameron
42a980e046SJonathan Cameronconfig IIO_CONSUMERS_PER_TRIGGER
43a980e046SJonathan Cameron       int "Maximum number of consumers per trigger"
44a980e046SJonathan Cameron       depends on IIO_TRIGGER
45a980e046SJonathan Cameron       default "2"
46a980e046SJonathan Cameron       help
47a980e046SJonathan Cameron	This value controls the maximum number of consumers that a
48a980e046SJonathan Cameron	given trigger may handle. Default is 2.
49a980e046SJonathan Cameron
500e589d5fSMaxime Ripardsource "drivers/iio/adc/Kconfig"
51e71d42e0SMichael Hennerichsource "drivers/iio/amplifiers/Kconfig"
52e71d42e0SMichael Hennerich
53a980e046SJonathan Cameronendif # IIO
54