xref: /linux/drivers/media/rc/Kconfig (revision fa5dc29c1fcc9151c3bcfd9e291a2899ae15f61d)
1b4c184e5SMauro Carvalho Chehabconfig RC_CORE
2b4c184e5SMauro Carvalho Chehab	tristate
3b4c184e5SMauro Carvalho Chehab	depends on MEDIA_RC_SUPPORT
432cf86f6SMauro Carvalho Chehab	depends on INPUT
5b4c184e5SMauro Carvalho Chehab	default y
632cf86f6SMauro Carvalho Chehab
7c455f5c8SMauro Carvalho Chehabsource "drivers/media/rc/keymaps/Kconfig"
8c455f5c8SMauro Carvalho Chehab
9c455f5c8SMauro Carvalho Chehabmenuconfig RC_DECODERS
10c455f5c8SMauro Carvalho Chehab        bool "Remote controller decoders"
11c455f5c8SMauro Carvalho Chehab	depends on RC_CORE
12c455f5c8SMauro Carvalho Chehab	default y
13c455f5c8SMauro Carvalho Chehab
14c455f5c8SMauro Carvalho Chehabif RC_DECODERS
1532cf86f6SMauro Carvalho Chehabconfig LIRC
16b4c184e5SMauro Carvalho Chehab	tristate "LIRC interface driver"
17b4c184e5SMauro Carvalho Chehab	depends on RC_CORE
1832cf86f6SMauro Carvalho Chehab
1932cf86f6SMauro Carvalho Chehab	---help---
2032cf86f6SMauro Carvalho Chehab	   Enable this option to build the Linux Infrared Remote
2132cf86f6SMauro Carvalho Chehab	   Control (LIRC) core device interface driver. The LIRC
2232cf86f6SMauro Carvalho Chehab	   interface passes raw IR to and from userspace, where the
2332cf86f6SMauro Carvalho Chehab	   LIRC daemon handles protocol decoding for IR reception and
2432cf86f6SMauro Carvalho Chehab	   encoding for IR transmitting (aka "blasting").
2532cf86f6SMauro Carvalho Chehab
2694f74767SMauro Carvalho Chehabconfig IR_LIRC_CODEC
2794f74767SMauro Carvalho Chehab	tristate "Enable IR to LIRC bridge"
2894f74767SMauro Carvalho Chehab	depends on RC_CORE
2994f74767SMauro Carvalho Chehab	depends on LIRC
3094f74767SMauro Carvalho Chehab	default y
3194f74767SMauro Carvalho Chehab
3294f74767SMauro Carvalho Chehab	---help---
3394f74767SMauro Carvalho Chehab	   Enable this option to pass raw IR to and from userspace via
3494f74767SMauro Carvalho Chehab	   the LIRC interface.
3594f74767SMauro Carvalho Chehab
3694f74767SMauro Carvalho Chehab
3732cf86f6SMauro Carvalho Chehabconfig IR_NEC_DECODER
3832cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the NEC protocol"
396bda9644SMauro Carvalho Chehab	depends on RC_CORE
4032cf86f6SMauro Carvalho Chehab	select BITREVERSE
4132cf86f6SMauro Carvalho Chehab	default y
4232cf86f6SMauro Carvalho Chehab
4332cf86f6SMauro Carvalho Chehab	---help---
4432cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with NEC protocol, and
4532cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
4632cf86f6SMauro Carvalho Chehab
4732cf86f6SMauro Carvalho Chehabconfig IR_RC5_DECODER
4832cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC-5 protocol"
496bda9644SMauro Carvalho Chehab	depends on RC_CORE
5032cf86f6SMauro Carvalho Chehab	select BITREVERSE
5132cf86f6SMauro Carvalho Chehab	default y
5232cf86f6SMauro Carvalho Chehab
5332cf86f6SMauro Carvalho Chehab	---help---
5432cf86f6SMauro Carvalho Chehab	   Enable this option if you have IR with RC-5 protocol, and
5532cf86f6SMauro Carvalho Chehab	   if the IR is decoded in software
5632cf86f6SMauro Carvalho Chehab
5732cf86f6SMauro Carvalho Chehabconfig IR_RC6_DECODER
5832cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the RC6 protocol"
596bda9644SMauro Carvalho Chehab	depends on RC_CORE
6032cf86f6SMauro Carvalho Chehab	select BITREVERSE
6132cf86f6SMauro Carvalho Chehab	default y
6232cf86f6SMauro Carvalho Chehab
6332cf86f6SMauro Carvalho Chehab	---help---
6432cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
6532cf86f6SMauro Carvalho Chehab	   uses the RC6 protocol, and you need software decoding support.
6632cf86f6SMauro Carvalho Chehab
6732cf86f6SMauro Carvalho Chehabconfig IR_JVC_DECODER
6832cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the JVC protocol"
696bda9644SMauro Carvalho Chehab	depends on RC_CORE
7032cf86f6SMauro Carvalho Chehab	select BITREVERSE
7132cf86f6SMauro Carvalho Chehab	default y
7232cf86f6SMauro Carvalho Chehab
7332cf86f6SMauro Carvalho Chehab	---help---
7432cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
7532cf86f6SMauro Carvalho Chehab	   uses the JVC protocol, and you need software decoding support.
7632cf86f6SMauro Carvalho Chehab
7732cf86f6SMauro Carvalho Chehabconfig IR_SONY_DECODER
7832cf86f6SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the Sony protocol"
796bda9644SMauro Carvalho Chehab	depends on RC_CORE
80b66d2086SArnd Bergmann	select BITREVERSE
8132cf86f6SMauro Carvalho Chehab	default y
8232cf86f6SMauro Carvalho Chehab
8332cf86f6SMauro Carvalho Chehab	---help---
8432cf86f6SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
8532cf86f6SMauro Carvalho Chehab	   uses the Sony protocol, and you need software decoding support.
8632cf86f6SMauro Carvalho Chehab
87b32e7243SMauro Carvalho Chehabconfig IR_SANYO_DECODER
88b32e7243SMauro Carvalho Chehab	tristate "Enable IR raw decoder for the Sanyo protocol"
89b32e7243SMauro Carvalho Chehab	depends on RC_CORE
90b32e7243SMauro Carvalho Chehab	default y
91b32e7243SMauro Carvalho Chehab
92b32e7243SMauro Carvalho Chehab	---help---
93b32e7243SMauro Carvalho Chehab	   Enable this option if you have an infrared remote control which
94b32e7243SMauro Carvalho Chehab	   uses the Sanyo protocol (Sanyo, Aiwa, Chinon remotes),
95b32e7243SMauro Carvalho Chehab	   and you need software decoding support.
96b32e7243SMauro Carvalho Chehab
971d184b0bSJames Hoganconfig IR_SHARP_DECODER
981d184b0bSJames Hogan	tristate "Enable IR raw decoder for the Sharp protocol"
991d184b0bSJames Hogan	depends on RC_CORE
1001d184b0bSJames Hogan	default y
1011d184b0bSJames Hogan
1021d184b0bSJames Hogan	---help---
1031d184b0bSJames Hogan	   Enable this option if you have an infrared remote control which
1041b0621afSHeiner Kallweit	   uses the Sharp protocol (Sharp, Denon), and you need software
1051b0621afSHeiner Kallweit	   decoding support.
1061d184b0bSJames Hogan
107f5f2cc64SJarod Wilsonconfig IR_MCE_KBD_DECODER
108f5f2cc64SJarod Wilson	tristate "Enable IR raw decoder for the MCE keyboard/mouse protocol"
109f5f2cc64SJarod Wilson	depends on RC_CORE
110f5f2cc64SJarod Wilson	select BITREVERSE
111f5f2cc64SJarod Wilson	default y
112f5f2cc64SJarod Wilson
113f5f2cc64SJarod Wilson	---help---
114f5f2cc64SJarod Wilson	   Enable this option if you have a Microsoft Remote Keyboard for
115f5f2cc64SJarod Wilson	   Windows Media Center Edition, which you would like to use with
116f5f2cc64SJarod Wilson	   a raw IR receiver in your system.
1171dee9b59SMarcel J.E. Mol
1181dee9b59SMarcel J.E. Molconfig IR_XMP_DECODER
1191dee9b59SMarcel J.E. Mol	tristate "Enable IR raw decoder for the XMP protocol"
1201dee9b59SMarcel J.E. Mol	depends on RC_CORE
1211dee9b59SMarcel J.E. Mol	select BITREVERSE
1221dee9b59SMarcel J.E. Mol	default y
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
127c455f5c8SMauro Carvalho Chehabendif #RC_DECODERS
128f5f2cc64SJarod Wilson
129b4c184e5SMauro Carvalho Chehabmenuconfig RC_DEVICES
130b4c184e5SMauro Carvalho Chehab	bool "Remote Controller devices"
131b4c184e5SMauro Carvalho Chehab	depends on RC_CORE
132b4c184e5SMauro Carvalho Chehab
133b4c184e5SMauro Carvalho Chehabif RC_DEVICES
134b4c184e5SMauro Carvalho Chehab
1359688efdaSAnssi Hannulaconfig RC_ATI_REMOTE
1363a7a6237SAnssi Hannula	tristate "ATI / X10 based USB RF remote controls"
1379688efdaSAnssi Hannula	depends on USB_ARCH_HAS_HCD
138c34516e5SAnssi Hannula	depends on RC_CORE
1399688efdaSAnssi Hannula	select USB
1409688efdaSAnssi Hannula	help
1413a7a6237SAnssi Hannula	   Say Y here if you want to use an X10 based USB remote control.
1429688efdaSAnssi Hannula	   These are RF remotes with USB receivers.
1433a7a6237SAnssi Hannula
1443a7a6237SAnssi Hannula	   Such devices include the ATI remote that comes with many of ATI's
1453a7a6237SAnssi Hannula	   All-In-Wonder video cards, the X10 "Lola" remote, NVIDIA RF remote,
1463a7a6237SAnssi Hannula	   Medion RF remote, and SnapStream FireFly remote.
1473a7a6237SAnssi Hannula
1489688efdaSAnssi Hannula	   This driver provides mouse pointer, left and right mouse buttons,
1499688efdaSAnssi Hannula	   and maps all the other remote buttons to keypress events.
1509688efdaSAnssi Hannula
1519688efdaSAnssi Hannula	   To compile this driver as a module, choose M here: the module will be
1529688efdaSAnssi Hannula	   called ati_remote.
1539688efdaSAnssi Hannula
15432cf86f6SMauro Carvalho Chehabconfig IR_ENE
15532cf86f6SMauro Carvalho Chehab	tristate "ENE eHome Receiver/Transceiver (pnp id: ENE0100/ENE02xxx)"
15632cf86f6SMauro Carvalho Chehab	depends on PNP
1576bda9644SMauro Carvalho Chehab	depends on RC_CORE
15832cf86f6SMauro Carvalho Chehab	---help---
15932cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
16032cf86f6SMauro Carvalho Chehab	   /transceiver made by ENE.
16132cf86f6SMauro Carvalho Chehab
16232cf86f6SMauro Carvalho Chehab	   You can see if you have it by looking at lspnp output.
16332cf86f6SMauro Carvalho Chehab	   Output should include ENE0100 ENE0200 or something similar.
16432cf86f6SMauro Carvalho Chehab
16532cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
16632cf86f6SMauro Carvalho Chehab	   module will be called ene_ir.
16732cf86f6SMauro Carvalho Chehab
168a84fcdaaSGuoxiong Yanconfig IR_HIX5HD2
169a84fcdaaSGuoxiong Yan	tristate "Hisilicon hix5hd2 IR remote control"
170a84fcdaaSGuoxiong Yan	depends on RC_CORE
171a84fcdaaSGuoxiong Yan	help
172a84fcdaaSGuoxiong Yan	 Say Y here if you want to use hisilicon hix5hd2 remote control.
173a84fcdaaSGuoxiong Yan	 To compile this driver as a module, choose M here: the module will be
174a84fcdaaSGuoxiong Yan	 called ir-hix5hd2.
175a84fcdaaSGuoxiong Yan
176a84fcdaaSGuoxiong Yan	 If you're not sure, select N here
177a84fcdaaSGuoxiong Yan
17832cf86f6SMauro Carvalho Chehabconfig IR_IMON
17932cf86f6SMauro Carvalho Chehab	tristate "SoundGraph iMON Receiver and Display"
18032cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
1816bda9644SMauro Carvalho Chehab	depends on RC_CORE
18232cf86f6SMauro Carvalho Chehab	select USB
18332cf86f6SMauro Carvalho Chehab	---help---
18432cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a SoundGraph iMON (aka Antec Veris)
18532cf86f6SMauro Carvalho Chehab	   IR Receiver and/or LCD/VFD/VGA display.
18632cf86f6SMauro Carvalho Chehab
18732cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
18832cf86f6SMauro Carvalho Chehab	   module will be called imon.
18932cf86f6SMauro Carvalho Chehab
19032cf86f6SMauro Carvalho Chehabconfig IR_MCEUSB
19132cf86f6SMauro Carvalho Chehab	tristate "Windows Media Center Ed. eHome Infrared Transceiver"
19232cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
1936bda9644SMauro Carvalho Chehab	depends on RC_CORE
19432cf86f6SMauro Carvalho Chehab	select USB
19532cf86f6SMauro Carvalho Chehab	---help---
19632cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Windows Media Center Edition
19732cf86f6SMauro Carvalho Chehab	   eHome Infrared Transceiver.
19832cf86f6SMauro Carvalho Chehab
19932cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
20032cf86f6SMauro Carvalho Chehab	   module will be called mceusb.
20132cf86f6SMauro Carvalho Chehab
202620a32bbSJuan J. Garcia de Soriaconfig IR_ITE_CIR
203620a32bbSJuan J. Garcia de Soria	tristate "ITE Tech Inc. IT8712/IT8512 Consumer Infrared Transceiver"
204620a32bbSJuan J. Garcia de Soria	depends on PNP
205620a32bbSJuan J. Garcia de Soria	depends on RC_CORE
206620a32bbSJuan J. Garcia de Soria	---help---
207620a32bbSJuan J. Garcia de Soria	   Say Y here to enable support for integrated infrared receivers
208620a32bbSJuan J. Garcia de Soria	   /transceivers made by ITE Tech Inc. These are found in
209620a32bbSJuan J. Garcia de Soria	   several ASUS devices, like the ASUS Digimatrix or the ASUS
210620a32bbSJuan J. Garcia de Soria	   EEEBox 1501U.
211620a32bbSJuan J. Garcia de Soria
212620a32bbSJuan J. Garcia de Soria	   To compile this driver as a module, choose M here: the
213620a32bbSJuan J. Garcia de Soria	   module will be called ite-cir.
214620a32bbSJuan J. Garcia de Soria
2159bdc79eaSJarod Wilsonconfig IR_FINTEK
2169bdc79eaSJarod Wilson	tristate "Fintek Consumer Infrared Transceiver"
2179bdc79eaSJarod Wilson	depends on PNP
2189bdc79eaSJarod Wilson	depends on RC_CORE
2199bdc79eaSJarod Wilson	---help---
2209bdc79eaSJarod Wilson	   Say Y here to enable support for integrated infrared receiver
2219bdc79eaSJarod Wilson	   /transciever made by Fintek. This chip is found on assorted
2229bdc79eaSJarod Wilson	   Jetway motherboards (and of course, possibly others).
2239bdc79eaSJarod Wilson
2249bdc79eaSJarod Wilson	   To compile this driver as a module, choose M here: the
2259bdc79eaSJarod Wilson	   module will be called fintek-cir.
2269bdc79eaSJarod Wilson
22712ddbadfSBeniamino Galvaniconfig IR_MESON
22812ddbadfSBeniamino Galvani	tristate "Amlogic Meson IR remote receiver"
22912ddbadfSBeniamino Galvani	depends on RC_CORE
23012ddbadfSBeniamino Galvani	depends on ARCH_MESON || COMPILE_TEST
23112ddbadfSBeniamino Galvani	---help---
23212ddbadfSBeniamino Galvani	   Say Y if you want to use the IR remote receiver available
23312ddbadfSBeniamino Galvani	   on Amlogic Meson SoCs.
23412ddbadfSBeniamino Galvani
23512ddbadfSBeniamino Galvani	   To compile this driver as a module, choose M here: the
23612ddbadfSBeniamino Galvani	   module will be called meson-ir.
23712ddbadfSBeniamino Galvani
23832cf86f6SMauro Carvalho Chehabconfig IR_NUVOTON
23932cf86f6SMauro Carvalho Chehab	tristate "Nuvoton w836x7hg Consumer Infrared Transceiver"
24032cf86f6SMauro Carvalho Chehab	depends on PNP
2416bda9644SMauro Carvalho Chehab	depends on RC_CORE
24232cf86f6SMauro Carvalho Chehab	---help---
24332cf86f6SMauro Carvalho Chehab	   Say Y here to enable support for integrated infrared receiver
24432cf86f6SMauro Carvalho Chehab	   /transciever made by Nuvoton (formerly Winbond). This chip is
24532cf86f6SMauro Carvalho Chehab	   found in the ASRock ION 330HT, as well as assorted Intel
24632cf86f6SMauro Carvalho Chehab	   DP55-series motherboards (and of course, possibly others).
24732cf86f6SMauro Carvalho Chehab
24832cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
24932cf86f6SMauro Carvalho Chehab	   module will be called nuvoton-cir.
25032cf86f6SMauro Carvalho Chehab
2512154be65SJarod Wilsonconfig IR_REDRAT3
2522154be65SJarod Wilson	tristate "RedRat3 IR Transceiver"
2532154be65SJarod Wilson	depends on USB_ARCH_HAS_HCD
2542154be65SJarod Wilson	depends on RC_CORE
255bf139726SSean Young	select NEW_LEDS
256bf139726SSean Young	select LEDS_CLASS
2572154be65SJarod Wilson	select USB
2582154be65SJarod Wilson	---help---
2592154be65SJarod Wilson	   Say Y here if you want to use a RedRat3 Infrared Transceiver.
2602154be65SJarod Wilson
2612154be65SJarod Wilson	   To compile this driver as a module, choose M here: the
2622154be65SJarod Wilson	   module will be called redrat3.
2632154be65SJarod Wilson
26432cf86f6SMauro Carvalho Chehabconfig IR_STREAMZAP
26532cf86f6SMauro Carvalho Chehab	tristate "Streamzap PC Remote IR Receiver"
26632cf86f6SMauro Carvalho Chehab	depends on USB_ARCH_HAS_HCD
2676bda9644SMauro Carvalho Chehab	depends on RC_CORE
26832cf86f6SMauro Carvalho Chehab	select USB
26932cf86f6SMauro Carvalho Chehab	---help---
27032cf86f6SMauro Carvalho Chehab	   Say Y here if you want to use a Streamzap PC Remote
27132cf86f6SMauro Carvalho Chehab	   Infrared Receiver.
27232cf86f6SMauro Carvalho Chehab
27332cf86f6SMauro Carvalho Chehab	   To compile this driver as a module, choose M here: the
27432cf86f6SMauro Carvalho Chehab	   module will be called streamzap.
27532cf86f6SMauro Carvalho Chehab
2765b2e303fSDavid Härdemanconfig IR_WINBOND_CIR
2775b2e303fSDavid Härdeman	tristate "Winbond IR remote control"
2785b2e303fSDavid Härdeman	depends on X86 && PNP
2796bda9644SMauro Carvalho Chehab	depends on RC_CORE
2805b2e303fSDavid Härdeman	select NEW_LEDS
2815b2e303fSDavid Härdeman	select LEDS_CLASS
2825b2e303fSDavid Härdeman	select BITREVERSE
2835b2e303fSDavid Härdeman	---help---
2845b2e303fSDavid Härdeman	   Say Y here if you want to use the IR remote functionality found
2855b2e303fSDavid Härdeman	   in some Winbond SuperI/O chips. Currently only the WPCD376I
2865b2e303fSDavid Härdeman	   chip is supported (included in some Intel Media series
2875b2e303fSDavid Härdeman	   motherboards).
2885b2e303fSDavid Härdeman
2895b2e303fSDavid Härdeman	   To compile this driver as a module, choose M here: the module will
2905b2e303fSDavid Härdeman	   be called winbond_cir.
2915b2e303fSDavid Härdeman
292b1c97193SSean Youngconfig IR_IGORPLUGUSB
293b1c97193SSean Young	tristate "IgorPlug-USB IR Receiver"
294b1c97193SSean Young	depends on USB_ARCH_HAS_HCD
295b1c97193SSean Young	depends on RC_CORE
296b1c97193SSean Young	select USB
297b1c97193SSean Young	---help---
298b1c97193SSean Young	   Say Y here if you want to use the IgorPlug-USB IR Receiver by
299b1c97193SSean Young	   Igor Cesko. This device is included on the Fit-PC2.
300b1c97193SSean Young
301b1c97193SSean Young	   Note that this device can only record bursts of 36 IR pulses and
302b1c97193SSean Young	   spaces, which is not enough for the NEC, Sanyo and RC-6 protocol.
303b1c97193SSean Young
304b1c97193SSean Young	   To compile this driver as a module, choose M here: the module will
305b1c97193SSean Young	   be called igorplugusb.
306b1c97193SSean Young
30726ff6313SSean Youngconfig IR_IGUANA
30826ff6313SSean Young	tristate "IguanaWorks USB IR Transceiver"
309ac6eb458SGuenter Roeck	depends on USB_ARCH_HAS_HCD
31026ff6313SSean Young	depends on RC_CORE
31126ff6313SSean Young	select USB
31226ff6313SSean Young	---help---
3130797b480SSean Young	   Say Y here if you want to use the IguanaWorks USB IR Transceiver.
3140797b480SSean Young	   Both infrared receive and send are supported. If you want to
3150797b480SSean Young	   change the ID or the pin config, use the user space driver from
3160797b480SSean Young	   IguanaWorks.
3170797b480SSean Young
3180797b480SSean Young	   Only firmware 0x0205 and later is supported.
31926ff6313SSean Young
32026ff6313SSean Young	   To compile this driver as a module, choose M here: the module will
32126ff6313SSean Young	   be called iguanair.
32226ff6313SSean Young
3230938069fSSean Youngconfig IR_TTUSBIR
3240938069fSSean Young	tristate "TechnoTrend USB IR Receiver"
3253ab2a83eSSean Young	depends on USB_ARCH_HAS_HCD
3260938069fSSean Young	depends on RC_CORE
3270938069fSSean Young	select USB
3280938069fSSean Young	select NEW_LEDS
3290938069fSSean Young	select LEDS_CLASS
3300938069fSSean Young	---help---
3310938069fSSean Young	   Say Y here if you want to use the TechnoTrend USB IR Receiver. The
3320938069fSSean Young	   driver can control the led.
3330938069fSSean Young
3340938069fSSean Young	   To compile this driver as a module, choose M here: the module will
3350938069fSSean Young	   be called ttusbir.
3360938069fSSean Young
337c332e847STimo Kokkonenconfig IR_RX51
3382ea4b442SMauro Carvalho Chehab	tristate "Nokia N900 IR transmitter diode"
3394406d52aSIvaylo Dimitrov	depends on OMAP_DM_TIMER && PWM_OMAP_DMTIMER && ARCH_OMAP2PLUS && LIRC
340c332e847STimo Kokkonen	---help---
341c332e847STimo Kokkonen	   Say Y or M here if you want to enable support for the IR
342c332e847STimo Kokkonen	   transmitter diode built in the Nokia N900 (RX51) device.
343c332e847STimo Kokkonen
344362b29baSTimo Kokkonen	   The driver uses omap DM timers for generating the carrier
345c332e847STimo Kokkonen	   wave and pulses.
346c332e847STimo Kokkonen
34754b29120SJames Hogansource "drivers/media/rc/img-ir/Kconfig"
34854b29120SJames Hogan
349801c73c0SDavid Härdemanconfig RC_LOOPBACK
350801c73c0SDavid Härdeman	tristate "Remote Control Loopback Driver"
351801c73c0SDavid Härdeman	depends on RC_CORE
352801c73c0SDavid Härdeman	---help---
353801c73c0SDavid Härdeman	   Say Y here if you want support for the remote control loopback
354801c73c0SDavid Härdeman	   driver which allows TX data to be sent back as RX data.
355801c73c0SDavid Härdeman	   This is mostly useful for debugging purposes.
356801c73c0SDavid Härdeman
357801c73c0SDavid Härdeman	   If you're not sure, select N here.
358801c73c0SDavid Härdeman
359801c73c0SDavid Härdeman	   To compile this driver as a module, choose M here: the module will
360801c73c0SDavid Härdeman	   be called rc_loopback.
361801c73c0SDavid Härdeman
362fd0f6851SRavi Kumar Vconfig IR_GPIO_CIR
363fd0f6851SRavi Kumar V	tristate "GPIO IR remote control"
364fd0f6851SRavi Kumar V	depends on RC_CORE
365fd0f6851SRavi Kumar V	---help---
366fd0f6851SRavi Kumar V	   Say Y if you want to use GPIO based IR Receiver.
367fd0f6851SRavi Kumar V
368fd0f6851SRavi Kumar V	   To compile this driver as a module, choose M here: the module will
369fd0f6851SRavi Kumar V	   be called gpio-ir-recv.
370fd0f6851SRavi Kumar V
37180f93c7bSSrinivas Kandagatlaconfig RC_ST
37280f93c7bSSrinivas Kandagatla	tristate "ST remote control receiver"
3737155043cSMauro Carvalho Chehab	depends on RC_CORE
3747155043cSMauro Carvalho Chehab	depends on ARCH_STI || COMPILE_TEST
375cfcffe39SHans Verkuil	---help---
37680f93c7bSSrinivas Kandagatla	   Say Y here if you want support for ST remote control driver
37780f93c7bSSrinivas Kandagatla	   which allows both IR and UHF RX.
37880f93c7bSSrinivas Kandagatla	   The driver passes raw pulse and space information to the LIRC decoder.
37980f93c7bSSrinivas Kandagatla
38080f93c7bSSrinivas Kandagatla	   If you're not sure, select N here.
38180f93c7bSSrinivas Kandagatla
382b4e3e59fSAlexander Bersenevconfig IR_SUNXI
383b4e3e59fSAlexander Bersenev	tristate "SUNXI IR remote control"
384b4e3e59fSAlexander Bersenev	depends on RC_CORE
3857155043cSMauro Carvalho Chehab	depends on ARCH_SUNXI || COMPILE_TEST
386b4e3e59fSAlexander Bersenev	---help---
387b4e3e59fSAlexander Bersenev	   Say Y if you want to use sunXi internal IR Controller
388b4e3e59fSAlexander Bersenev
389b4e3e59fSAlexander Bersenev	   To compile this driver as a module, choose M here: the module will
390b4e3e59fSAlexander Bersenev	   be called sunxi-ir.
391b4e3e59fSAlexander Bersenev
392*fa5dc29cSSean Youngconfig IR_SERIAL
393*fa5dc29cSSean Young	tristate "Homebrew Serial Port Receiver"
394*fa5dc29cSSean Young	depends on RC_CORE
395*fa5dc29cSSean Young	---help---
396*fa5dc29cSSean Young	   Say Y if you want to use Homebrew Serial Port Receivers and
397*fa5dc29cSSean Young	   Transceivers.
398*fa5dc29cSSean Young
399*fa5dc29cSSean Young	   To compile this driver as a module, choose M here: the module will
400*fa5dc29cSSean Young	   be called serial-ir.
401*fa5dc29cSSean Young
402*fa5dc29cSSean Youngconfig IR_SERIAL_TRANSMITTER
403*fa5dc29cSSean Young	bool "Serial Port Transmitter"
404*fa5dc29cSSean Young	default y
405*fa5dc29cSSean Young	depends on IR_SERIAL
406*fa5dc29cSSean Young	---help---
407*fa5dc29cSSean Young	   Serial Port Transmitter support
408*fa5dc29cSSean Young
409b4c184e5SMauro Carvalho Chehabendif #RC_DEVICES
410