xref: /linux/drivers/media/rc/Kconfig (revision 9688efda3fb0abb487ae44ced1dd02d14a4312c4)
16bda9644SMauro Carvalho Chehabmenuconfig RC_CORE
26bda9644SMauro Carvalho Chehab	tristate "Remote Controller adapters"
332cf86f6SMauro Carvalho Chehab	depends on INPUT
432cf86f6SMauro Carvalho Chehab	default INPUT
532cf86f6SMauro Carvalho Chehab	---help---
632cf86f6SMauro Carvalho Chehab	  Enable support for Remote Controllers on Linux. This is
7*9688efdaSAnssi Hannula	  needed in order to support several video capture adapters,
8*9688efdaSAnssi Hannula	  standalone IR receivers/transmitters, and RF receivers.
932cf86f6SMauro Carvalho Chehab
1032cf86f6SMauro Carvalho Chehab	  Enable this option if you have a video capture board even
1132cf86f6SMauro Carvalho Chehab	  if you don't need IR, as otherwise, you may not be able to
1232cf86f6SMauro Carvalho Chehab	  compile the driver for your adapter.
1332cf86f6SMauro Carvalho Chehab
146bda9644SMauro Carvalho Chehabif RC_CORE
1532cf86f6SMauro Carvalho Chehab
1632cf86f6SMauro Carvalho Chehabconfig LIRC
1732cf86f6SMauro Carvalho Chehab	tristate
1832cf86f6SMauro Carvalho Chehab	default y
1932cf86f6SMauro Carvalho Chehab
2032cf86f6SMauro Carvalho Chehab	---help---
2132cf86f6SMauro Carvalho Chehab	   Enable this option to build the Linux Infrared Remote
2232cf86f6SMauro Carvalho Chehab	   Control (LIRC) core device interface driver. The LIRC
2332cf86f6SMauro Carvalho Chehab	   interface passes raw IR to and from userspace, where the
2432cf86f6SMauro Carvalho Chehab	   LIRC daemon handles protocol decoding for IR reception and
2532cf86f6SMauro Carvalho Chehab	   encoding for IR transmitting (aka "blasting").
2632cf86f6SMauro Carvalho Chehab
2732cf86f6SMauro Carvalho Chehabsource "drivers/media/rc/keymaps/Kconfig"
2832cf86f6SMauro Carvalho Chehab
2932cf86f6SMauro Carvalho Chehabconfig IR_NEC_DECODER
3032cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the NEC protocol"
316bda9644SMauro Carvalho Chehab	depends on RC_CORE
3232cf86f6SMauro Carvalho Chehab	select BITREVERSE
3332cf86f6SMauro Carvalho Chehab	default y
3432cf86f6SMauro Carvalho Chehab
3532cf86f6SMauro Carvalho Chehab	---help---
3632cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with NEC protocol, and
3732cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
3832cf86f6SMauro Carvalho Chehab
3932cf86f6SMauro Carvalho Chehabconfig IR_RC5_DECODER
4032cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC-5 protocol"
416bda9644SMauro Carvalho Chehab	depends on RC_CORE
4232cf86f6SMauro Carvalho Chehab	select BITREVERSE
4332cf86f6SMauro Carvalho Chehab	default y
4432cf86f6SMauro Carvalho Chehab
4532cf86f6SMauro Carvalho Chehab	---help---
4632cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with RC-5 protocol, and
4732cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
4832cf86f6SMauro Carvalho Chehab
4932cf86f6SMauro Carvalho Chehabconfig IR_RC6_DECODER
5032cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC6 protocol"
516bda9644SMauro Carvalho Chehab	depends on RC_CORE
5232cf86f6SMauro Carvalho Chehab	select BITREVERSE
5332cf86f6SMauro Carvalho Chehab	default y
5432cf86f6SMauro Carvalho Chehab
5532cf86f6SMauro Carvalho Chehab	---help---
5632cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
5732cf86f6SMauro Carvalho Chehab	   uses the RC6 protocol, and you need software decoding support.
5832cf86f6SMauro Carvalho Chehab
5932cf86f6SMauro Carvalho Chehabconfig IR_JVC_DECODER
6032cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the JVC protocol"
616bda9644SMauro Carvalho Chehab	depends on RC_CORE
6232cf86f6SMauro Carvalho Chehab	select BITREVERSE
6332cf86f6SMauro Carvalho Chehab	default y
6432cf86f6SMauro Carvalho Chehab
6532cf86f6SMauro Carvalho Chehab	---help---
6632cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
6732cf86f6SMauro Carvalho Chehab	   uses the JVC protocol, and you need software decoding support.
6832cf86f6SMauro Carvalho Chehab
6932cf86f6SMauro Carvalho Chehabconfig IR_SONY_DECODER
7032cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the Sony protocol"
716bda9644SMauro Carvalho Chehab	depends on RC_CORE
7232cf86f6SMauro Carvalho Chehab	default y
7332cf86f6SMauro Carvalho Chehab
7432cf86f6SMauro Carvalho Chehab	---help---
7532cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
7632cf86f6SMauro Carvalho Chehab	   uses the Sony protocol, and you need software decoding support.
7732cf86f6SMauro Carvalho Chehab
7832cf86f6SMauro Carvalho Chehabconfig IR_RC5_SZ_DECODER
7932cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC-5 (streamzap) protocol"
806bda9644SMauro Carvalho Chehab	depends on RC_CORE
8132cf86f6SMauro Carvalho Chehab	select BITREVERSE
8232cf86f6SMauro Carvalho Chehab	default y
8332cf86f6SMauro Carvalho Chehab
8432cf86f6SMauro Carvalho Chehab	---help---
8532cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with RC-5 (streamzap) protocol,
8632cf86f6SMauro Carvalho Chehab	   and if the IR is decoded in software. (The Streamzap PC Remote
8732cf86f6SMauro Carvalho Chehab	   uses an IR protocol that is almost standard RC-5, but not quite,
8832cf86f6SMauro Carvalho Chehab	   as it uses an additional bit).
8932cf86f6SMauro Carvalho Chehab
90f5f2cc64SJarod Wilsonconfig IR_MCE_KBD_DECODER
91f5f2cc64SJarod Wilson	tristate "Enable IR raw decoder for the MCE keyboard/mouse protocol"
92f5f2cc64SJarod Wilson	depends on RC_CORE
93f5f2cc64SJarod Wilson	select BITREVERSE
94f5f2cc64SJarod Wilson	default y
95f5f2cc64SJarod Wilson
96f5f2cc64SJarod Wilson	---help---
97f5f2cc64SJarod Wilson	   Enable this option if you have a Microsoft Remote Keyboard for
98f5f2cc64SJarod Wilson	   Windows Media Center Edition, which you would like to use with
99f5f2cc64SJarod Wilson	   a raw IR receiver in your system.
100f5f2cc64SJarod Wilson
10132cf86f6SMauro Carvalho Chehabconfig IR_LIRC_CODEC
10232cf86f6SMauro Carvalho Chehab	tristate "Enable IR to LIRC bridge"
1036bda9644SMauro Carvalho Chehab	depends on RC_CORE
10432cf86f6SMauro Carvalho Chehab	depends on LIRC
10532cf86f6SMauro Carvalho Chehab	default y
10632cf86f6SMauro Carvalho Chehab
10732cf86f6SMauro Carvalho Chehab	---help---
10832cf86f6SMauro Carvalho Chehab	   Enable this option to pass raw IR to and from userspace via
10932cf86f6SMauro Carvalho Chehab	   the LIRC interface.
11032cf86f6SMauro Carvalho Chehab
111*9688efdaSAnssi Hannulaconfig RC_ATI_REMOTE
112*9688efdaSAnssi Hannula	tristate "ATI / X10 USB RF remote control"
113*9688efdaSAnssi Hannula	depends on USB_ARCH_HAS_HCD
114*9688efdaSAnssi Hannula	select USB
115*9688efdaSAnssi Hannula	help
116*9688efdaSAnssi Hannula	   Say Y here if you want to use an ATI or X10 "Lola" USB remote control.
117*9688efdaSAnssi Hannula	   These are RF remotes with USB receivers.
118*9688efdaSAnssi Hannula	   The ATI remote comes with many of ATI's All-In-Wonder video cards.
119*9688efdaSAnssi Hannula	   The X10 "Lola" remote is available at:
120*9688efdaSAnssi Hannula	      <http://www.x10.com/products/lola_sg1.htm>
121*9688efdaSAnssi Hannula	   This driver provides mouse pointer, left and right mouse buttons,
122*9688efdaSAnssi Hannula	   and maps all the other remote buttons to keypress events.
123*9688efdaSAnssi Hannula
124*9688efdaSAnssi Hannula	   To compile this driver as a module, choose M here: the module will be
125*9688efdaSAnssi Hannula	   called ati_remote.
126*9688efdaSAnssi Hannula
12732cf86f6SMauro Carvalho Chehabconfig IR_ENE
12832cf86f6SMauro Carvalho Chehab	tristate "ENE eHome Receiver/Transceiver (pnp id: ENE0100/ENE02xxx)"
12932cf86f6SMauro Carvalho Chehab	depends on PNP
1306bda9644SMauro Carvalho Chehab	depends on RC_CORE
13132cf86f6SMauro Carvalho Chehab	---help---
13232cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
13332cf86f6SMauro Carvalho Chehab	   /transceiver made by ENE.
13432cf86f6SMauro Carvalho Chehab
13532cf86f6SMauro Carvalho Chehab	   You can see if you have it by looking at lspnp output.
13632cf86f6SMauro Carvalho Chehab	   Output should include ENE0100 ENE0200 or something similar.
13732cf86f6SMauro Carvalho Chehab
13832cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
13932cf86f6SMauro Carvalho Chehab	   module will be called ene_ir.
14032cf86f6SMauro Carvalho Chehab
14132cf86f6SMauro Carvalho Chehabconfig IR_IMON
14232cf86f6SMauro Carvalho Chehab	tristate "SoundGraph iMON Receiver and Display"
14332cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
1446bda9644SMauro Carvalho Chehab	depends on RC_CORE
14532cf86f6SMauro Carvalho Chehab	select USB
14632cf86f6SMauro Carvalho Chehab	---help---
14732cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a SoundGraph iMON (aka Antec Veris)
14832cf86f6SMauro Carvalho Chehab	   IR Receiver and/or LCD/VFD/VGA display.
14932cf86f6SMauro Carvalho Chehab
15032cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
15132cf86f6SMauro Carvalho Chehab	   module will be called imon.
15232cf86f6SMauro Carvalho Chehab
15332cf86f6SMauro Carvalho Chehabconfig IR_MCEUSB
15432cf86f6SMauro Carvalho Chehab	tristate "Windows Media Center Ed. eHome Infrared Transceiver"
15532cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
1566bda9644SMauro Carvalho Chehab	depends on RC_CORE
15732cf86f6SMauro Carvalho Chehab	select USB
15832cf86f6SMauro Carvalho Chehab	---help---
15932cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Windows Media Center Edition
16032cf86f6SMauro Carvalho Chehab	   eHome Infrared Transceiver.
16132cf86f6SMauro Carvalho Chehab
16232cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
16332cf86f6SMauro Carvalho Chehab	   module will be called mceusb.
16432cf86f6SMauro Carvalho Chehab
165620a32bbSJuan J. Garcia de Soriaconfig IR_ITE_CIR
166620a32bbSJuan J. Garcia de Soria	tristate "ITE Tech Inc. IT8712/IT8512 Consumer Infrared Transceiver"
167620a32bbSJuan J. Garcia de Soria	depends on PNP
168620a32bbSJuan J. Garcia de Soria	depends on RC_CORE
169620a32bbSJuan J. Garcia de Soria	---help---
170620a32bbSJuan J. Garcia de Soria	   Say Y here to enable support for integrated infrared receivers
171620a32bbSJuan J. Garcia de Soria	   /transceivers made by ITE Tech Inc. These are found in
172620a32bbSJuan J. Garcia de Soria	   several ASUS devices, like the ASUS Digimatrix or the ASUS
173620a32bbSJuan J. Garcia de Soria	   EEEBox 1501U.
174620a32bbSJuan J. Garcia de Soria
175620a32bbSJuan J. Garcia de Soria	   To compile this driver as a module, choose M here: the
176620a32bbSJuan J. Garcia de Soria	   module will be called ite-cir.
177620a32bbSJuan J. Garcia de Soria
1789bdc79eaSJarod Wilsonconfig IR_FINTEK
1799bdc79eaSJarod Wilson	tristate "Fintek Consumer Infrared Transceiver"
1809bdc79eaSJarod Wilson	depends on PNP
1819bdc79eaSJarod Wilson	depends on RC_CORE
1829bdc79eaSJarod Wilson	---help---
1839bdc79eaSJarod Wilson	   Say Y here to enable support for integrated infrared receiver
1849bdc79eaSJarod Wilson	   /transciever made by Fintek. This chip is found on assorted
1859bdc79eaSJarod Wilson	   Jetway motherboards (and of course, possibly others).
1869bdc79eaSJarod Wilson
1879bdc79eaSJarod Wilson	   To compile this driver as a module, choose M here: the
1889bdc79eaSJarod Wilson	   module will be called fintek-cir.
1899bdc79eaSJarod Wilson
19032cf86f6SMauro Carvalho Chehabconfig IR_NUVOTON
19132cf86f6SMauro Carvalho Chehab	tristate "Nuvoton w836x7hg Consumer Infrared Transceiver"
19232cf86f6SMauro Carvalho Chehab	depends on PNP
1936bda9644SMauro Carvalho Chehab	depends on RC_CORE
19432cf86f6SMauro Carvalho Chehab	---help---
19532cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
19632cf86f6SMauro Carvalho Chehab	   /transciever made by Nuvoton (formerly Winbond). This chip is
19732cf86f6SMauro Carvalho Chehab	   found in the ASRock ION 330HT, as well as assorted Intel
19832cf86f6SMauro Carvalho Chehab	   DP55-series motherboards (and of course, possibly others).
19932cf86f6SMauro Carvalho Chehab
20032cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
20132cf86f6SMauro Carvalho Chehab	   module will be called nuvoton-cir.
20232cf86f6SMauro Carvalho Chehab
2032154be65SJarod Wilsonconfig IR_REDRAT3
2042154be65SJarod Wilson	tristate "RedRat3 IR Transceiver"
2052154be65SJarod Wilson	depends on USB_ARCH_HAS_HCD
2062154be65SJarod Wilson	depends on RC_CORE
2072154be65SJarod Wilson	select USB
2082154be65SJarod Wilson	---help---
2092154be65SJarod Wilson	   Say Y here if you want to use a RedRat3 Infrared Transceiver.
2102154be65SJarod Wilson
2112154be65SJarod Wilson	   To compile this driver as a module, choose M here: the
2122154be65SJarod Wilson	   module will be called redrat3.
2132154be65SJarod Wilson
21432cf86f6SMauro Carvalho Chehabconfig IR_STREAMZAP
21532cf86f6SMauro Carvalho Chehab	tristate "Streamzap PC Remote IR Receiver"
21632cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
2176bda9644SMauro Carvalho Chehab	depends on RC_CORE
21832cf86f6SMauro Carvalho Chehab	select USB
21932cf86f6SMauro Carvalho Chehab	---help---
22032cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Streamzap PC Remote
22132cf86f6SMauro Carvalho Chehab	   Infrared Receiver.
22232cf86f6SMauro Carvalho Chehab
22332cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
22432cf86f6SMauro Carvalho Chehab	   module will be called streamzap.
22532cf86f6SMauro Carvalho Chehab
2265b2e303fSDavid Härdemanconfig IR_WINBOND_CIR
2275b2e303fSDavid Härdeman	tristate "Winbond IR remote control"
2285b2e303fSDavid Härdeman	depends on X86 && PNP
2296bda9644SMauro Carvalho Chehab	depends on RC_CORE
2305b2e303fSDavid Härdeman	select NEW_LEDS
2315b2e303fSDavid Härdeman	select LEDS_CLASS
2325b2e303fSDavid Härdeman	select LEDS_TRIGGERS
2335b2e303fSDavid Härdeman	select BITREVERSE
2345b2e303fSDavid Härdeman	---help---
2355b2e303fSDavid Härdeman	   Say Y here if you want to use the IR remote functionality found
2365b2e303fSDavid Härdeman	   in some Winbond SuperI/O chips. Currently only the WPCD376I
2375b2e303fSDavid Härdeman	   chip is supported (included in some Intel Media series
2385b2e303fSDavid Härdeman	   motherboards).
2395b2e303fSDavid Härdeman
2405b2e303fSDavid Härdeman	   To compile this driver as a module, choose M here: the module will
2415b2e303fSDavid Härdeman	   be called winbond_cir.
2425b2e303fSDavid Härdeman
243801c73c0SDavid Härdemanconfig RC_LOOPBACK
244801c73c0SDavid Härdeman	tristate "Remote Control Loopback Driver"
245801c73c0SDavid Härdeman	depends on RC_CORE
246801c73c0SDavid Härdeman	---help---
247801c73c0SDavid Härdeman	   Say Y here if you want support for the remote control loopback
248801c73c0SDavid Härdeman	   driver which allows TX data to be sent back as RX data.
249801c73c0SDavid Härdeman	   This is mostly useful for debugging purposes.
250801c73c0SDavid Härdeman
251801c73c0SDavid Härdeman	   If you're not sure, select N here.
252801c73c0SDavid Härdeman
253801c73c0SDavid Härdeman	   To compile this driver as a module, choose M here: the module will
254801c73c0SDavid Härdeman	   be called rc_loopback.
255801c73c0SDavid Härdeman
2566bda9644SMauro Carvalho Chehabendif #RC_CORE
257