dm vdo string-utils: change from uds_ to vdo_ namespace
[linux-block.git] / drivers / counter / Kconfig
CommitLineData
ec8f24b7 1# SPDX-License-Identifier: GPL-2.0-only
0040a390
WBG
2#
3# Counter devices
4#
5
d4284874
WBG
6config I8254
7 tristate
8 select COUNTER
9 select REGMAP
10 help
11 Enables support for the i8254 interface library functions. The i8254
12 interface library provides functions to facilitate communication with
13 interfaces compatible with the venerable Intel 8254 Programmable
14 Interval Timer (PIT). The Intel 825x family of chips was first
15 released in the early 1980s but compatible interfaces are nowadays
16 typically found embedded in larger VLSI processing chips and FPGA
17 components.
18
19 If built as a module its name will be i8254.
20
9b53a134
WBG
21menuconfig COUNTER
22 tristate "Counter support"
23 help
24 This enables counter device support through the Generic Counter
25 interface. You only need to enable this, if you also want to enable
26 one or more of the counter device drivers below.
27
f1d8a071
WBG
28if COUNTER
29
30config 104_QUAD_8
31 tristate "ACCES 104-QUAD-8 driver"
95c211f0 32 depends on (PC104 && X86) || COMPILE_TEST
67d91a1e 33 depends on HAS_IOPORT_MAP
f1d8a071 34 select ISA_BUS_API
98ffe025 35 select REGMAP_MMIO
f1d8a071
WBG
36 help
37 Say yes here to build support for the ACCES 104-QUAD-8 quadrature
38 encoder counter/interface device family (104-QUAD-8, 104-QUAD-4).
39
40 A counter's respective error flag may be cleared by performing a write
a4ec431f
WBG
41 operation on the respective count value attribute. The 104-QUAD-8
42 counters may be set either directly or via the counter's preset
43 attribute.
f1d8a071
WBG
44
45 The base port addresses for the devices may be configured via the base
7aa2ba0d
WBG
46 array module parameter. The interrupt line numbers for the devices may
47 be configured via the irq array module parameter.
f1d8a071 48
9c5e51f2
PR
49config FTM_QUADDEC
50 tristate "Flex Timer Module Quadrature decoder driver"
3760b49a 51 depends on SOC_LS1021A || COMPILE_TEST
9c5e51f2
PR
52 depends on HAS_IOMEM && OF
53 help
54 Select this option to enable the Flex Timer Quadrature decoder
55 driver.
56
57 To compile this driver as a module, choose M here: the
58 module will be called ftm-quaddec.
59
60config INTEL_QEP
61 tristate "Intel Quadrature Encoder Peripheral driver"
92a33370 62 depends on X86
9c5e51f2
PR
63 depends on PCI
64 help
65 Select this option to enable the Intel Quadrature Encoder Peripheral
66 driver.
67
68 To compile this driver as a module, choose M here: the module
69 will be called intel-qep.
70
a55ebd47
OR
71config INTERRUPT_CNT
72 tristate "Interrupt counter driver"
73 depends on GPIOLIB
74 help
75 Select this option to enable interrupt counter driver. Any interrupt
76 source can be used by this driver as the event source.
77
78 To compile this driver as a module, choose M here: the
79 module will be called interrupt-cnt.
80
9c5e51f2
PR
81config MICROCHIP_TCB_CAPTURE
82 tristate "Microchip Timer Counter Capture driver"
01f714ee 83 depends on SOC_AT91SAM9 || SOC_SAM_V7 || COMPILE_TEST
9c5e51f2
PR
84 depends on HAS_IOMEM && OF
85 select REGMAP_MMIO
ad29937e 86 help
9c5e51f2
PR
87 Select this option to enable the Microchip Timer Counter Block
88 capture driver.
ad29937e
BG
89
90 To compile this driver as a module, choose M here: the
9c5e51f2 91 module will be called microchip-tcb-capture.
ad29937e 92
0be89073
BD
93config RZ_MTU3_CNT
94 tristate "Renesas RZ/G2L MTU3a counter driver"
10d33404 95 depends on RZ_MTU3
0be89073
BD
96 help
97 Enable support for MTU3a counter driver found on Renesas RZ/G2L alike
98 SoCs. This IP supports both 16-bit and 32-bit phase counting mode
99 support.
100
101 To compile this driver as a module, choose M here: the
102 module will be called rz-mtu3-cnt.
103
597f55e3
FG
104config STM32_LPTIMER_CNT
105 tristate "STM32 LP Timer encoder counter driver"
01f68f06 106 depends on MFD_STM32_LPTIMER || COMPILE_TEST
597f55e3
FG
107 help
108 Select this option to enable STM32 Low-Power Timer quadrature encoder
109 and counter driver.
110
111 To compile this driver as a module, choose M here: the
112 module will be called stm32-lptimer-cnt.
113
9c5e51f2
PR
114config STM32_TIMER_CNT
115 tristate "STM32 Timer encoder counter driver"
116 depends on MFD_STM32_TIMERS || COMPILE_TEST
106b1041 117 help
9c5e51f2
PR
118 Select this option to enable STM32 Timer quadrature encoder
119 and counter driver.
106b1041
KB
120
121 To compile this driver as a module, choose M here: the
9c5e51f2 122 module will be called stm32-timer-cnt.
b711f687 123
4e2f42aa
JP
124config TI_ECAP_CAPTURE
125 tristate "TI eCAP capture driver"
126 depends on ARCH_OMAP2PLUS || ARCH_DAVINCI_DA8XX || ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
127 depends on HAS_IOMEM
128 select REGMAP_MMIO
129 help
130 Select this option to enable the Texas Instruments Enhanced Capture
131 (eCAP) driver in input mode.
132
133 It can be used to timestamp events (falling/rising edges) detected
134 on ECAP input signal.
135
136 To compile this driver as a module, choose M here: the module
137 will be called ti-ecap-capture.
138
9c5e51f2
PR
139config TI_EQEP
140 tristate "TI eQEP counter driver"
141 depends on (SOC_AM33XX || COMPILE_TEST)
142 select REGMAP_MMIO
143 help
144 Select this option to enable the Texas Instruments Enhanced Quadrature
145 Encoder Pulse (eQEP) counter driver.
146
147 To compile this driver as a module, choose M here: the module will be
148 called ti-eqep.
149
f1d8a071 150endif # COUNTER