upload tizen1.0 source
[kernel/linux-2.6.36.git] / drivers / staging / iio / Kconfig
1 #
2 # Industrial I/O subsytem configuration
3 #
4
5 menuconfig IIO
6         tristate "Industrial I/O support"
7         depends on !S390
8         ---help---
9           The industrial I/O subsystem provides a unified framework for
10           drivers for many different types of embedded sensors using a
11           number of different physical interfaces (i2c, spi, etc). See
12           Documentation/industrialio for more information.
13 if IIO
14
15 config IIO_RING_BUFFER
16         bool "Enable ring buffer support within IIO"
17         help
18           Provide core support for various ring buffer based data
19           acquisition methods.
20
21 if IIO_RING_BUFFER
22
23 config IIO_SW_RING
24        select IIO_TRIGGER
25         tristate "Industrial I/O lock free software ring"
26         help
27           Example software ring buffer implementation.  The design aim
28           of this particular realization was to minimize write locking
29           with the intention that some devices would be able to write
30           in interrupt context.
31
32 endif # IIO_RINGBUFFER
33
34 config IIO_TRIGGER
35         boolean "Enable triggered sampling support"
36         help
37           Provides IIO core support for triggers.  Currently these
38           are used to initialize capture of samples to push into
39           ring buffers.  The triggers are effectively a 'capture
40           data now' interrupt.
41
42
43 source "drivers/staging/iio/accel/Kconfig"
44 source "drivers/staging/iio/adc/Kconfig"
45 source "drivers/staging/iio/gyro/Kconfig"
46 source "drivers/staging/iio/imu/Kconfig"
47 source "drivers/staging/iio/light/Kconfig"
48 source "drivers/staging/iio/magnetometer/Kconfig"
49
50 source "drivers/staging/iio/trigger/Kconfig"
51
52 endif # IIO