Kconfig (0040a390d2fde44a03b3a05cf0cdf3e692ece60f) | Kconfig (f1d8a071d45bf13dd9bb9f1777133ca8a1cafebe) |
---|---|
1# 2# Counter devices 3# 4 5menuconfig COUNTER 6 tristate "Counter support" 7 help 8 This enables counter device support through the Generic Counter 9 interface. You only need to enable this, if you also want to enable 10 one or more of the counter device drivers below. | 1# 2# Counter devices 3# 4 5menuconfig COUNTER 6 tristate "Counter support" 7 help 8 This enables counter device support through the Generic Counter 9 interface. You only need to enable this, if you also want to enable 10 one or more of the counter device drivers below. |
11 12if COUNTER 13 14config 104_QUAD_8 15 tristate "ACCES 104-QUAD-8 driver" 16 depends on PC104 && X86 && IIO 17 select ISA_BUS_API 18 help 19 Say yes here to build support for the ACCES 104-QUAD-8 quadrature 20 encoder counter/interface device family (104-QUAD-8, 104-QUAD-4). 21 22 A counter's respective error flag may be cleared by performing a write 23 operation on the respective count value attribute. Although the 24 104-QUAD-8 counters have a 25-bit range, only the lower 24 bits may be 25 set, either directly or via the counter's preset attribute. Interrupts 26 are not supported by this driver. 27 28 The base port addresses for the devices may be configured via the base 29 array module parameter. 30 31endif # COUNTER |
|