blob: 28498a294daa6c9c9955963be6964ab29bc740d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
config IR_IMG
tristate "ImgTec IR Decoder"
depends on RC_CORE
select IR_IMG_HW if !IR_IMG_RAW
help
Say Y or M here if you want to use the ImgTec infrared decoder
functionality found in SoCs such as TZ1090.
config IR_IMG_RAW
bool "Raw decoder"
depends on IR_IMG
help
Say Y here to enable the raw mode driver which passes raw IR signal
changes to the IR raw decoders for software decoding. This is much
less reliable (due to lack of timestamps) and consumes more
processing power than using hardware decode, but can be useful for
testing, debug, and to make more protocols available.
config IR_IMG_HW
bool "Hardware decoder"
depends on IR_IMG
help
Say Y here to enable the hardware decode driver which decodes the IR
signals in hardware. This is more reliable, consumes less processing
power since only a single interrupt is received for each scancode,
and allows an IR scancode to be used as a wake event.
config IR_IMG_NEC
bool "NEC protocol support"
depends on IR_IMG_HW
help
Say Y here to enable support for the NEC, extended NEC, and 32-bit
NEC protocols in the ImgTec infrared decoder block.
|