xref: /linux/drivers/media/rc/Kconfig (revision 721074b03411327e7bf41555d4cc7c18f49313f7)
1b9e1486eSSean Young
2b9e1486eSSean Youngmenuconfig RC_CORE
3b9e1486eSSean Young	tristate "Remote Controller support"
432cf86f6SMauro Carvalho Chehab	depends on INPUT
5b9e1486eSSean Young	---help---
6b9e1486eSSean Young	  Enable support for Remote Controllers on Linux. This is
7b9e1486eSSean Young	  needed in order to support several video capture adapters,
8b9e1486eSSean Young	  standalone IR receivers/transmitters, and RF receivers.
932cf86f6SMauro Carvalho Chehab
10b9e1486eSSean Young	  Enable this option if you have a video capture board even
11b9e1486eSSean Young	  if you don't need IR, as otherwise, you may not be able to
12b9e1486eSSean Young	  compile the driver for your adapter.
13b9e1486eSSean Young
14b9e1486eSSean Young	  Say Y when you have a TV or an IR device.
15b9e1486eSSean Young
16b9e1486eSSean Youngif RC_CORE
17c455f5c8SMauro Carvalho Chehabsource "drivers/media/rc/keymaps/Kconfig"
18c455f5c8SMauro Carvalho Chehab
19a60d64b1SSean Youngconfig LIRC
20a60d64b1SSean Young	bool "LIRC user interface"
21a60d64b1SSean Young	depends on RC_CORE
22a60d64b1SSean Young	---help---
23a60d64b1SSean Young	   Enable this option to enable the Linux Infrared Remote
24a60d64b1SSean Young	   Control user interface (e.g. /dev/lirc*). This interface
25a60d64b1SSean Young	   passes raw IR to and from userspace, which is needed for
26a60d64b1SSean Young	   IR transmitting (aka "blasting") and for the lirc daemon.
27a60d64b1SSean Young
28f4364dcfSSean Youngconfig BPF_LIRC_MODE2
29f4364dcfSSean Young	bool "Support for eBPF programs attached to lirc devices"
30f4364dcfSSean Young	depends on BPF_SYSCALL
31f4364dcfSSean Young	depends on RC_CORE=y
32f4364dcfSSean Young	depends on LIRC
33f4364dcfSSean Young	help
34f4364dcfSSean Young	   Allow attaching eBPF programs to a lirc device using the bpf(2)
35f4364dcfSSean Young	   syscall command BPF_PROG_ATTACH. This is supported for raw IR
36f4364dcfSSean Young	   receivers.
37f4364dcfSSean Young
38f4364dcfSSean Young	   These eBPF programs can be used to decode IR into scancodes, for
39f4364dcfSSean Young	   IR protocols not supported by the kernel decoders.
40f4364dcfSSean Young
41c455f5c8SMauro Carvalho Chehabmenuconfig RC_DECODERS
42c455f5c8SMauro Carvalho Chehab	bool "Remote controller decoders"
43c455f5c8SMauro Carvalho Chehab	depends on RC_CORE
44c455f5c8SMauro Carvalho Chehab
45c455f5c8SMauro Carvalho Chehabif RC_DECODERS
4632cf86f6SMauro Carvalho Chehabconfig IR_NEC_DECODER
4732cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the NEC protocol"
486bda9644SMauro Carvalho Chehab	depends on RC_CORE
4932cf86f6SMauro Carvalho Chehab	select BITREVERSE
5032cf86f6SMauro Carvalho Chehab
5132cf86f6SMauro Carvalho Chehab	---help---
5232cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with NEC protocol, and
5332cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
5432cf86f6SMauro Carvalho Chehab
5532cf86f6SMauro Carvalho Chehabconfig IR_RC5_DECODER
5632cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC-5 protocol"
576bda9644SMauro Carvalho Chehab	depends on RC_CORE
5832cf86f6SMauro Carvalho Chehab	select BITREVERSE
5932cf86f6SMauro Carvalho Chehab
6032cf86f6SMauro Carvalho Chehab	---help---
6132cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with RC-5 protocol, and
6232cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
6332cf86f6SMauro Carvalho Chehab
6432cf86f6SMauro Carvalho Chehabconfig IR_RC6_DECODER
6532cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC6 protocol"
666bda9644SMauro Carvalho Chehab	depends on RC_CORE
6732cf86f6SMauro Carvalho Chehab	select BITREVERSE
6832cf86f6SMauro Carvalho Chehab
6932cf86f6SMauro Carvalho Chehab	---help---
7032cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
7132cf86f6SMauro Carvalho Chehab	   uses the RC6 protocol, and you need software decoding support.
7232cf86f6SMauro Carvalho Chehab
7332cf86f6SMauro Carvalho Chehabconfig IR_JVC_DECODER
7432cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the JVC protocol"
756bda9644SMauro Carvalho Chehab	depends on RC_CORE
7632cf86f6SMauro Carvalho Chehab	select BITREVERSE
7732cf86f6SMauro Carvalho Chehab
7832cf86f6SMauro Carvalho Chehab	---help---
7932cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
8032cf86f6SMauro Carvalho Chehab	   uses the JVC protocol, and you need software decoding support.
8132cf86f6SMauro Carvalho Chehab
8232cf86f6SMauro Carvalho Chehabconfig IR_SONY_DECODER
8332cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the Sony protocol"
846bda9644SMauro Carvalho Chehab	depends on RC_CORE
85b66d2086SArnd Bergmann	select BITREVERSE
8632cf86f6SMauro Carvalho Chehab
8732cf86f6SMauro Carvalho Chehab	---help---
8832cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
8932cf86f6SMauro Carvalho Chehab	   uses the Sony protocol, and you need software decoding support.
9032cf86f6SMauro Carvalho Chehab
91b32e7243SMauro Carvalho Chehabconfig IR_SANYO_DECODER
92b32e7243SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the Sanyo protocol"
93b32e7243SMauro Carvalho Chehab	depends on RC_CORE
94b32e7243SMauro Carvalho Chehab
95b32e7243SMauro Carvalho Chehab	---help---
96b32e7243SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
97b32e7243SMauro Carvalho Chehab	   uses the Sanyo protocol (Sanyo, Aiwa, Chinon remotes),
98b32e7243SMauro Carvalho Chehab	   and you need software decoding support.
99b32e7243SMauro Carvalho Chehab
1001d184b0bSJames Hoganconfig IR_SHARP_DECODER
1011d184b0bSJames Hogan	tristate "Enable IR raw decoder for the Sharp protocol"
1021d184b0bSJames Hogan	depends on RC_CORE
1031d184b0bSJames Hogan
1041d184b0bSJames Hogan	---help---
1051d184b0bSJames Hogan	   Enable this option if you have an infrared remote control which
1061b0621afSHeiner Kallweit	   uses the Sharp protocol (Sharp, Denon), and you need software
1071b0621afSHeiner Kallweit	   decoding support.
1081d184b0bSJames Hogan
109f5f2cc64SJarod Wilsonconfig IR_MCE_KBD_DECODER
110f5f2cc64SJarod Wilson	tristate "Enable IR raw decoder for the MCE keyboard/mouse protocol"
111f5f2cc64SJarod Wilson	depends on RC_CORE
112f5f2cc64SJarod Wilson	select BITREVERSE
113f5f2cc64SJarod Wilson
114f5f2cc64SJarod Wilson	---help---
115f5f2cc64SJarod Wilson	   Enable this option if you have a Microsoft Remote Keyboard for
116f5f2cc64SJarod Wilson	   Windows Media Center Edition, which you would like to use with
117f5f2cc64SJarod Wilson	   a raw IR receiver in your system.
1181dee9b59SMarcel J.E. Mol
1191dee9b59SMarcel J.E. Molconfig IR_XMP_DECODER
1201dee9b59SMarcel J.E. Mol	tristate "Enable IR raw decoder for the XMP protocol"
1211dee9b59SMarcel J.E. Mol	depends on RC_CORE
1221dee9b59SMarcel J.E. Mol	select BITREVERSE
1231dee9b59SMarcel J.E. Mol
1241dee9b59SMarcel J.E. Mol	---help---
1251dee9b59SMarcel J.E. Mol	   Enable this option if you have IR with XMP protocol, and
1261dee9b59SMarcel J.E. Mol	   if the IR is decoded in software
127447dcc0cSSean Young
128447dcc0cSSean Youngconfig IR_IMON_DECODER
129447dcc0cSSean Young	tristate "Enable IR raw decoder for the iMON protocol"
130447dcc0cSSean Young	depends on RC_CORE
131447dcc0cSSean Young	---help---
132447dcc0cSSean Young	   Enable this option if you have iMON PAD or Antec Veris infrared
133447dcc0cSSean Young	   remote control and you would like to use it with a raw IR
134447dcc0cSSean Young	   receiver, or if you wish to use an encoder to transmit this IR.
135447dcc0cSSean Young
136*721074b0SPatrick Lerdaconfig IR_RCMM_DECODER
137*721074b0SPatrick Lerda	tristate "Enable IR raw decoder for the RC-MM protocol"
138*721074b0SPatrick Lerda	depends on RC_CORE
139*721074b0SPatrick Lerda	help
140*721074b0SPatrick Lerda	   Enable this option when you have IR with RC-MM protocol, and
141*721074b0SPatrick Lerda	   you need the software decoder. The driver supports 12,
142*721074b0SPatrick Lerda	   24 and 32 bits RC-MM variants. You can enable or disable the
143*721074b0SPatrick Lerda	   different modes using the following RC protocol keywords:
144*721074b0SPatrick Lerda	   'rc-mm-12', 'rc-mm-24' and 'rc-mm-32'.
145*721074b0SPatrick Lerda
146*721074b0SPatrick Lerda	   To compile this driver as a module, choose M here: the module
147*721074b0SPatrick Lerda	   will be called ir-rcmm-decoder.
148*721074b0SPatrick Lerda
149c455f5c8SMauro Carvalho Chehabendif #RC_DECODERS
150f5f2cc64SJarod Wilson
151b4c184e5SMauro Carvalho Chehabmenuconfig RC_DEVICES
152b4c184e5SMauro Carvalho Chehab	bool "Remote Controller devices"
153b4c184e5SMauro Carvalho Chehab	depends on RC_CORE
154b4c184e5SMauro Carvalho Chehab
155b4c184e5SMauro Carvalho Chehabif RC_DEVICES
156b4c184e5SMauro Carvalho Chehab
1579688efdaSAnssi Hannulaconfig RC_ATI_REMOTE
1583a7a6237SAnssi Hannula	tristate "ATI / X10 based USB RF remote controls"
1599688efdaSAnssi Hannula	depends on USB_ARCH_HAS_HCD
160c34516e5SAnssi Hannula	depends on RC_CORE
1619688efdaSAnssi Hannula	select USB
1629688efdaSAnssi Hannula	help
1633a7a6237SAnssi Hannula	   Say Y here if you want to use an X10 based USB remote control.
1649688efdaSAnssi Hannula	   These are RF remotes with USB receivers.
1653a7a6237SAnssi Hannula
1663a7a6237SAnssi Hannula	   Such devices include the ATI remote that comes with many of ATI's
1673a7a6237SAnssi Hannula	   All-In-Wonder video cards, the X10 "Lola" remote, NVIDIA RF remote,
1683a7a6237SAnssi Hannula	   Medion RF remote, and SnapStream FireFly remote.
1693a7a6237SAnssi Hannula
1709688efdaSAnssi Hannula	   This driver provides mouse pointer, left and right mouse buttons,
1719688efdaSAnssi Hannula	   and maps all the other remote buttons to keypress events.
1729688efdaSAnssi Hannula
1739688efdaSAnssi Hannula	   To compile this driver as a module, choose M here: the module will be
1749688efdaSAnssi Hannula	   called ati_remote.
1759688efdaSAnssi Hannula
17632cf86f6SMauro Carvalho Chehabconfig IR_ENE
17732cf86f6SMauro Carvalho Chehab	tristate "ENE eHome Receiver/Transceiver (pnp id: ENE0100/ENE02xxx)"
1786ba0b22dSMauro Carvalho Chehab	depends on PNP || COMPILE_TEST
1796bda9644SMauro Carvalho Chehab	depends on RC_CORE
18032cf86f6SMauro Carvalho Chehab	---help---
18132cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
18232cf86f6SMauro Carvalho Chehab	   /transceiver made by ENE.
18332cf86f6SMauro Carvalho Chehab
18432cf86f6SMauro Carvalho Chehab	   You can see if you have it by looking at lspnp output.
18532cf86f6SMauro Carvalho Chehab	   Output should include ENE0100 ENE0200 or something similar.
18632cf86f6SMauro Carvalho Chehab
18732cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
18832cf86f6SMauro Carvalho Chehab	   module will be called ene_ir.
18932cf86f6SMauro Carvalho Chehab
190a84fcdaaSGuoxiong Yanconfig IR_HIX5HD2
191a84fcdaaSGuoxiong Yan	tristate "Hisilicon hix5hd2 IR remote control"
192a84fcdaaSGuoxiong Yan	depends on RC_CORE
193a840f3c7SSean Young	depends on OF || COMPILE_TEST
194a84fcdaaSGuoxiong Yan	help
195a84fcdaaSGuoxiong Yan	   Say Y here if you want to use hisilicon hix5hd2 remote control.
196a84fcdaaSGuoxiong Yan	   To compile this driver as a module, choose M here: the module will be
197a84fcdaaSGuoxiong Yan	   called ir-hix5hd2.
198a84fcdaaSGuoxiong Yan
199a84fcdaaSGuoxiong Yan	   If you're not sure, select N here
200a84fcdaaSGuoxiong Yan
20132cf86f6SMauro Carvalho Chehabconfig IR_IMON
20232cf86f6SMauro Carvalho Chehab	tristate "SoundGraph iMON Receiver and Display"
20332cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
2046bda9644SMauro Carvalho Chehab	depends on RC_CORE
20532cf86f6SMauro Carvalho Chehab	select USB
20632cf86f6SMauro Carvalho Chehab	---help---
20732cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a SoundGraph iMON (aka Antec Veris)
20832cf86f6SMauro Carvalho Chehab	   IR Receiver and/or LCD/VFD/VGA display.
20932cf86f6SMauro Carvalho Chehab
21032cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
21132cf86f6SMauro Carvalho Chehab	   module will be called imon.
21232cf86f6SMauro Carvalho Chehab
2138a4e8f8dSSean Youngconfig IR_IMON_RAW
2148a4e8f8dSSean Young	tristate "SoundGraph iMON Receiver (early raw IR models)"
2158a4e8f8dSSean Young	depends on USB_ARCH_HAS_HCD
2168a4e8f8dSSean Young	depends on RC_CORE
2178a4e8f8dSSean Young	select USB
2188a4e8f8dSSean Young	---help---
2198a4e8f8dSSean Young	   Say Y here if you want to use a SoundGraph iMON IR Receiver,
2208a4e8f8dSSean Young	   early raw models.
2218a4e8f8dSSean Young
2228a4e8f8dSSean Young	   To compile this driver as a module, choose M here: the
2238a4e8f8dSSean Young	   module will be called imon_raw.
2248a4e8f8dSSean Young
22532cf86f6SMauro Carvalho Chehabconfig IR_MCEUSB
22632cf86f6SMauro Carvalho Chehab	tristate "Windows Media Center Ed. eHome Infrared Transceiver"
22732cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
2286bda9644SMauro Carvalho Chehab	depends on RC_CORE
22932cf86f6SMauro Carvalho Chehab	select USB
23032cf86f6SMauro Carvalho Chehab	---help---
23132cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Windows Media Center Edition
23232cf86f6SMauro Carvalho Chehab	   eHome Infrared Transceiver.
23332cf86f6SMauro Carvalho Chehab
23432cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
23532cf86f6SMauro Carvalho Chehab	   module will be called mceusb.
23632cf86f6SMauro Carvalho Chehab
237620a32bbSJuan J. Garcia de Soriaconfig IR_ITE_CIR
238620a32bbSJuan J. Garcia de Soria	tristate "ITE Tech Inc. IT8712/IT8512 Consumer Infrared Transceiver"
2396ba0b22dSMauro Carvalho Chehab	depends on PNP || COMPILE_TEST
240620a32bbSJuan J. Garcia de Soria	depends on RC_CORE
241620a32bbSJuan J. Garcia de Soria	---help---
242620a32bbSJuan J. Garcia de Soria	   Say Y here to enable support for integrated infrared receivers
243620a32bbSJuan J. Garcia de Soria	   /transceivers made by ITE Tech Inc. These are found in
244620a32bbSJuan J. Garcia de Soria	   several ASUS devices, like the ASUS Digimatrix or the ASUS
245620a32bbSJuan J. Garcia de Soria	   EEEBox 1501U.
246620a32bbSJuan J. Garcia de Soria
247620a32bbSJuan J. Garcia de Soria	   To compile this driver as a module, choose M here: the
248620a32bbSJuan J. Garcia de Soria	   module will be called ite-cir.
249620a32bbSJuan J. Garcia de Soria
2509bdc79eaSJarod Wilsonconfig IR_FINTEK
2519bdc79eaSJarod Wilson	tristate "Fintek Consumer Infrared Transceiver"
2526ba0b22dSMauro Carvalho Chehab	depends on PNP || COMPILE_TEST
2539bdc79eaSJarod Wilson	depends on RC_CORE
2549bdc79eaSJarod Wilson	---help---
2559bdc79eaSJarod Wilson	   Say Y here to enable support for integrated infrared receiver
2569bdc79eaSJarod Wilson	   /transciever made by Fintek. This chip is found on assorted
2579bdc79eaSJarod Wilson	   Jetway motherboards (and of course, possibly others).
2589bdc79eaSJarod Wilson
2599bdc79eaSJarod Wilson	   To compile this driver as a module, choose M here: the
2609bdc79eaSJarod Wilson	   module will be called fintek-cir.
2619bdc79eaSJarod Wilson
26212ddbadfSBeniamino Galvaniconfig IR_MESON
26312ddbadfSBeniamino Galvani	tristate "Amlogic Meson IR remote receiver"
26412ddbadfSBeniamino Galvani	depends on RC_CORE
26512ddbadfSBeniamino Galvani	depends on ARCH_MESON || COMPILE_TEST
26612ddbadfSBeniamino Galvani	---help---
26712ddbadfSBeniamino Galvani	   Say Y if you want to use the IR remote receiver available
26812ddbadfSBeniamino Galvani	   on Amlogic Meson SoCs.
26912ddbadfSBeniamino Galvani
27012ddbadfSBeniamino Galvani	   To compile this driver as a module, choose M here: the
27112ddbadfSBeniamino Galvani	   module will be called meson-ir.
27212ddbadfSBeniamino Galvani
2736691e7b9SSean Wangconfig IR_MTK
2746691e7b9SSean Wang	tristate "Mediatek IR remote receiver"
2756691e7b9SSean Wang	depends on RC_CORE
2766691e7b9SSean Wang	depends on ARCH_MEDIATEK || COMPILE_TEST
2776691e7b9SSean Wang	---help---
2786691e7b9SSean Wang	   Say Y if you want to use the IR remote receiver available
2796691e7b9SSean Wang	   on Mediatek SoCs.
2806691e7b9SSean Wang
2816691e7b9SSean Wang	   To compile this driver as a module, choose M here: the
2826691e7b9SSean Wang	   module will be called mtk-cir.
2836691e7b9SSean Wang
28432cf86f6SMauro Carvalho Chehabconfig IR_NUVOTON
28532cf86f6SMauro Carvalho Chehab	tristate "Nuvoton w836x7hg Consumer Infrared Transceiver"
2866ba0b22dSMauro Carvalho Chehab	depends on PNP || COMPILE_TEST
2876bda9644SMauro Carvalho Chehab	depends on RC_CORE
28832cf86f6SMauro Carvalho Chehab	---help---
28932cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
29032cf86f6SMauro Carvalho Chehab	   /transciever made by Nuvoton (formerly Winbond). This chip is
29132cf86f6SMauro Carvalho Chehab	   found in the ASRock ION 330HT, as well as assorted Intel
29232cf86f6SMauro Carvalho Chehab	   DP55-series motherboards (and of course, possibly others).
29332cf86f6SMauro Carvalho Chehab
29432cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
29532cf86f6SMauro Carvalho Chehab	   module will be called nuvoton-cir.
29632cf86f6SMauro Carvalho Chehab
2972154be65SJarod Wilsonconfig IR_REDRAT3
2982154be65SJarod Wilson	tristate "RedRat3 IR Transceiver"
2992154be65SJarod Wilson	depends on USB_ARCH_HAS_HCD
3002154be65SJarod Wilson	depends on RC_CORE
301bf139726SSean Young	select NEW_LEDS
302bf139726SSean Young	select LEDS_CLASS
3032154be65SJarod Wilson	select USB
3042154be65SJarod Wilson	---help---
3052154be65SJarod Wilson	   Say Y here if you want to use a RedRat3 Infrared Transceiver.
3062154be65SJarod Wilson
3072154be65SJarod Wilson	   To compile this driver as a module, choose M here: the
3082154be65SJarod Wilson	   module will be called redrat3.
3092154be65SJarod Wilson
310fe052da4SAndi Shyticonfig IR_SPI
311fe052da4SAndi Shyti	tristate "SPI connected IR LED"
312fe052da4SAndi Shyti	depends on SPI && LIRC
313950db1a8SSean Young	depends on OF || COMPILE_TEST
314fe052da4SAndi Shyti	---help---
315fe052da4SAndi Shyti	  Say Y if you want to use an IR LED connected through SPI bus.
316fe052da4SAndi Shyti
317fe052da4SAndi Shyti	  To compile this driver as a module, choose M here: the module will be
318fe052da4SAndi Shyti	  called ir-spi.
319fe052da4SAndi Shyti
32032cf86f6SMauro Carvalho Chehabconfig IR_STREAMZAP
32132cf86f6SMauro Carvalho Chehab	tristate "Streamzap PC Remote IR Receiver"
32232cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
3236bda9644SMauro Carvalho Chehab	depends on RC_CORE
32432cf86f6SMauro Carvalho Chehab	select USB
32532cf86f6SMauro Carvalho Chehab	---help---
32632cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Streamzap PC Remote
32732cf86f6SMauro Carvalho Chehab	   Infrared Receiver.
32832cf86f6SMauro Carvalho Chehab
32932cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
33032cf86f6SMauro Carvalho Chehab	   module will be called streamzap.
33132cf86f6SMauro Carvalho Chehab
3325b2e303fSDavid Härdemanconfig IR_WINBOND_CIR
3335b2e303fSDavid Härdeman	tristate "Winbond IR remote control"
3346ba0b22dSMauro Carvalho Chehab	depends on (X86 && PNP) || COMPILE_TEST
3356bda9644SMauro Carvalho Chehab	depends on RC_CORE
3365b2e303fSDavid Härdeman	select NEW_LEDS
3375b2e303fSDavid Härdeman	select LEDS_CLASS
3385b2e303fSDavid Härdeman	select BITREVERSE
3395b2e303fSDavid Härdeman	---help---
3405b2e303fSDavid Härdeman	   Say Y here if you want to use the IR remote functionality found
3415b2e303fSDavid Härdeman	   in some Winbond SuperI/O chips. Currently only the WPCD376I
3425b2e303fSDavid Härdeman	   chip is supported (included in some Intel Media series
3435b2e303fSDavid Härdeman	   motherboards).
3445b2e303fSDavid Härdeman
3455b2e303fSDavid Härdeman	   To compile this driver as a module, choose M here: the module will
3465b2e303fSDavid Härdeman	   be called winbond_cir.
3475b2e303fSDavid Härdeman
348b1c97193SSean Youngconfig IR_IGORPLUGUSB
349b1c97193SSean Young	tristate "IgorPlug-USB IR Receiver"
350b1c97193SSean Young	depends on USB_ARCH_HAS_HCD
351b1c97193SSean Young	depends on RC_CORE
352b1c97193SSean Young	select USB
353b1c97193SSean Young	---help---
354b1c97193SSean Young	   Say Y here if you want to use the IgorPlug-USB IR Receiver by
355b1c97193SSean Young	   Igor Cesko. This device is included on the Fit-PC2.
356b1c97193SSean Young
357b1c97193SSean Young	   Note that this device can only record bursts of 36 IR pulses and
358b1c97193SSean Young	   spaces, which is not enough for the NEC, Sanyo and RC-6 protocol.
359b1c97193SSean Young
360b1c97193SSean Young	   To compile this driver as a module, choose M here: the module will
361b1c97193SSean Young	   be called igorplugusb.
362b1c97193SSean Young
36326ff6313SSean Youngconfig IR_IGUANA
36426ff6313SSean Young	tristate "IguanaWorks USB IR Transceiver"
365ac6eb458SGuenter Roeck	depends on USB_ARCH_HAS_HCD
36626ff6313SSean Young	depends on RC_CORE
36726ff6313SSean Young	select USB
36826ff6313SSean Young	---help---
3690797b480SSean Young	   Say Y here if you want to use the IguanaWorks USB IR Transceiver.
3700797b480SSean Young	   Both infrared receive and send are supported. If you want to
3710797b480SSean Young	   change the ID or the pin config, use the user space driver from
3720797b480SSean Young	   IguanaWorks.
3730797b480SSean Young
3740797b480SSean Young	   Only firmware 0x0205 and later is supported.
37526ff6313SSean Young
37626ff6313SSean Young	   To compile this driver as a module, choose M here: the module will
37726ff6313SSean Young	   be called iguanair.
37826ff6313SSean Young
3790938069fSSean Youngconfig IR_TTUSBIR
3800938069fSSean Young	tristate "TechnoTrend USB IR Receiver"
3813ab2a83eSSean Young	depends on USB_ARCH_HAS_HCD
3820938069fSSean Young	depends on RC_CORE
3830938069fSSean Young	select USB
3840938069fSSean Young	select NEW_LEDS
3850938069fSSean Young	select LEDS_CLASS
3860938069fSSean Young	---help---
3870938069fSSean Young	   Say Y here if you want to use the TechnoTrend USB IR Receiver. The
3880938069fSSean Young	   driver can control the led.
3890938069fSSean Young
3900938069fSSean Young	   To compile this driver as a module, choose M here: the module will
3910938069fSSean Young	   be called ttusbir.
3920938069fSSean Young
393c332e847STimo Kokkonenconfig IR_RX51
3942ea4b442SMauro Carvalho Chehab	tristate "Nokia N900 IR transmitter diode"
395a92def1bSSean Young	depends on (OMAP_DM_TIMER && PWM_OMAP_DMTIMER && ARCH_OMAP2PLUS || COMPILE_TEST) && RC_CORE
396c332e847STimo Kokkonen	---help---
397c332e847STimo Kokkonen	   Say Y or M here if you want to enable support for the IR
398c332e847STimo Kokkonen	   transmitter diode built in the Nokia N900 (RX51) device.
399c332e847STimo Kokkonen
400362b29baSTimo Kokkonen	   The driver uses omap DM timers for generating the carrier
401c332e847STimo Kokkonen	   wave and pulses.
402c332e847STimo Kokkonen
40354b29120SJames Hogansource "drivers/media/rc/img-ir/Kconfig"
40454b29120SJames Hogan
405801c73c0SDavid Härdemanconfig RC_LOOPBACK
406801c73c0SDavid Härdeman	tristate "Remote Control Loopback Driver"
407801c73c0SDavid Härdeman	depends on RC_CORE
408801c73c0SDavid Härdeman	---help---
409801c73c0SDavid Härdeman	   Say Y here if you want support for the remote control loopback
410801c73c0SDavid Härdeman	   driver which allows TX data to be sent back as RX data.
411801c73c0SDavid Härdeman	   This is mostly useful for debugging purposes.
412801c73c0SDavid Härdeman
413801c73c0SDavid Härdeman	   If you're not sure, select N here.
414801c73c0SDavid Härdeman
415801c73c0SDavid Härdeman	   To compile this driver as a module, choose M here: the module will
416801c73c0SDavid Härdeman	   be called rc_loopback.
417801c73c0SDavid Härdeman
418fd0f6851SRavi Kumar Vconfig IR_GPIO_CIR
419fd0f6851SRavi Kumar V	tristate "GPIO IR remote control"
420fd0f6851SRavi Kumar V	depends on RC_CORE
421c1301077SLadislav Michl	depends on (OF && GPIOLIB) || COMPILE_TEST
422fd0f6851SRavi Kumar V	---help---
423fd0f6851SRavi Kumar V	   Say Y if you want to use GPIO based IR Receiver.
424fd0f6851SRavi Kumar V
425fd0f6851SRavi Kumar V	   To compile this driver as a module, choose M here: the module will
426fd0f6851SRavi Kumar V	   be called gpio-ir-recv.
427fd0f6851SRavi Kumar V
42824d79ebcSSean Youngconfig IR_GPIO_TX
42924d79ebcSSean Young	tristate "GPIO IR Bit Banging Transmitter"
43024d79ebcSSean Young	depends on RC_CORE
43124d79ebcSSean Young	depends on LIRC
43252888793SSean Young	depends on (OF && GPIOLIB) || COMPILE_TEST
43324d79ebcSSean Young	---help---
43424d79ebcSSean Young	   Say Y if you want to a GPIO based IR transmitter. This is a
43524d79ebcSSean Young	   bit banging driver.
43624d79ebcSSean Young
43724d79ebcSSean Young	   To compile this driver as a module, choose M here: the module will
43824d79ebcSSean Young	   be called gpio-ir-tx.
43924d79ebcSSean Young
440db3df876SSean Youngconfig IR_PWM_TX
441db3df876SSean Young	tristate "PWM IR transmitter"
442db3df876SSean Young	depends on RC_CORE
443db3df876SSean Young	depends on LIRC
444db3df876SSean Young	depends on PWM
4452d726aaaSSean Young	depends on OF || COMPILE_TEST
446db3df876SSean Young	---help---
447db3df876SSean Young	   Say Y if you want to use a PWM based IR transmitter. This is
448db3df876SSean Young	   more power efficient than the bit banging gpio driver.
449db3df876SSean Young
450db3df876SSean Young	   To compile this driver as a module, choose M here: the module will
451db3df876SSean Young	   be called pwm-ir-tx.
452db3df876SSean Young
45380f93c7bSSrinivas Kandagatlaconfig RC_ST
45480f93c7bSSrinivas Kandagatla	tristate "ST remote control receiver"
4557155043cSMauro Carvalho Chehab	depends on RC_CORE
4567155043cSMauro Carvalho Chehab	depends on ARCH_STI || COMPILE_TEST
457cfcffe39SHans Verkuil	---help---
45880f93c7bSSrinivas Kandagatla	   Say Y here if you want support for ST remote control driver
45980f93c7bSSrinivas Kandagatla	   which allows both IR and UHF RX.
46080f93c7bSSrinivas Kandagatla	   The driver passes raw pulse and space information to the LIRC decoder.
46180f93c7bSSrinivas Kandagatla
46280f93c7bSSrinivas Kandagatla	   If you're not sure, select N here.
46380f93c7bSSrinivas Kandagatla
464b4e3e59fSAlexander Bersenevconfig IR_SUNXI
465b4e3e59fSAlexander Bersenev	tristate "SUNXI IR remote control"
466b4e3e59fSAlexander Bersenev	depends on RC_CORE
4677155043cSMauro Carvalho Chehab	depends on ARCH_SUNXI || COMPILE_TEST
468b4e3e59fSAlexander Bersenev	---help---
469b4e3e59fSAlexander Bersenev	   Say Y if you want to use sunXi internal IR Controller
470b4e3e59fSAlexander Bersenev
471b4e3e59fSAlexander Bersenev	   To compile this driver as a module, choose M here: the module will
472b4e3e59fSAlexander Bersenev	   be called sunxi-ir.
473b4e3e59fSAlexander Bersenev
474fa5dc29cSSean Youngconfig IR_SERIAL
475fa5dc29cSSean Young	tristate "Homebrew Serial Port Receiver"
476fa5dc29cSSean Young	depends on RC_CORE
477fa5dc29cSSean Young	---help---
478fa5dc29cSSean Young	   Say Y if you want to use Homebrew Serial Port Receivers and
479fa5dc29cSSean Young	   Transceivers.
480fa5dc29cSSean Young
481fa5dc29cSSean Young	   To compile this driver as a module, choose M here: the module will
482fa5dc29cSSean Young	   be called serial-ir.
483fa5dc29cSSean Young
484fa5dc29cSSean Youngconfig IR_SERIAL_TRANSMITTER
485fa5dc29cSSean Young	bool "Serial Port Transmitter"
486fa5dc29cSSean Young	depends on IR_SERIAL
487fa5dc29cSSean Young	---help---
488fa5dc29cSSean Young	   Serial Port Transmitter support
489fa5dc29cSSean Young
490e6626716SSean Youngconfig IR_SIR
491e6626716SSean Young	tristate "Built-in SIR IrDA port"
492e6626716SSean Young	depends on RC_CORE
493e6626716SSean Young	---help---
494e6626716SSean Young	   Say Y if you want to use a IrDA SIR port Transceivers.
495e6626716SSean Young
496e6626716SSean Young	   To compile this driver as a module, choose M here: the module will
497e6626716SSean Young	   be called sir-ir.
498e6626716SSean Young
499d3455273SMans Rullgardconfig IR_TANGO
500d3455273SMans Rullgard	tristate "Sigma Designs SMP86xx IR decoder"
501d3455273SMans Rullgard	depends on RC_CORE
502d3455273SMans Rullgard	depends on ARCH_TANGO || COMPILE_TEST
503d3455273SMans Rullgard	---help---
504d3455273SMans Rullgard	   Adds support for the HW IR decoder embedded on Sigma Designs
505d3455273SMans Rullgard	   Tango-based systems (SMP86xx, SMP87xx).
506d3455273SMans Rullgard	   The HW decoder supports NEC, RC-5, RC-6 IR protocols.
507d3455273SMans Rullgard	   When compiled as a module, look for tango-ir.
508d3455273SMans Rullgard
50902d32bdaSBenjamin Valentinconfig RC_XBOX_DVD
51002d32bdaSBenjamin Valentin	tristate "Xbox DVD Movie Playback Kit"
51102d32bdaSBenjamin Valentin	depends on RC_CORE
51202d32bdaSBenjamin Valentin	depends on USB_ARCH_HAS_HCD
51302d32bdaSBenjamin Valentin	select USB
51402d32bdaSBenjamin Valentin	help
51502d32bdaSBenjamin Valentin	   Say Y here if you want to use the Xbox DVD Movie Playback Kit.
51602d32bdaSBenjamin Valentin	   These are IR remotes with USB receivers for the Original Xbox (2001).
51702d32bdaSBenjamin Valentin
51802d32bdaSBenjamin Valentin	   To compile this driver as a module, choose M here: the module will be
51902d32bdaSBenjamin Valentin	   called xbox_remote.
52002d32bdaSBenjamin Valentin
521b429996cSShawn Guoconfig IR_ZX
522b429996cSShawn Guo	tristate "ZTE ZX IR remote control"
523b429996cSShawn Guo	depends on RC_CORE
524b429996cSShawn Guo	depends on ARCH_ZX || COMPILE_TEST
525b429996cSShawn Guo	---help---
526b429996cSShawn Guo	   Say Y if you want to use the IR remote control available
527b429996cSShawn Guo	   on ZTE ZX family SoCs.
528b429996cSShawn Guo
529b429996cSShawn Guo	   To compile this driver as a module, choose M here: the
530b429996cSShawn Guo	   module will be called zx-irdec.
531b429996cSShawn Guo
532b4c184e5SMauro Carvalho Chehabendif #RC_DEVICES
533b9e1486eSSean Young
534b9e1486eSSean Youngendif #RC_CORE
535