2010-07-31 21:59:14 +07:00
|
|
|
menuconfig IR_CORE
|
|
|
|
tristate "Infrared remote controller adapters"
|
2009-12-11 18:00:00 +07:00
|
|
|
depends on INPUT
|
|
|
|
default INPUT
|
2010-08-09 20:07:20 +07:00
|
|
|
---help---
|
|
|
|
Enable support for Remote Controllers on Linux. This is
|
|
|
|
needed in order to support several video capture adapters.
|
2009-12-11 18:34:07 +07:00
|
|
|
|
2010-08-09 20:07:20 +07:00
|
|
|
Enable this option if you have a video capture board even
|
|
|
|
if you don't need IR, as otherwise, you may not be able to
|
|
|
|
compile the driver for your adapter.
|
2010-07-31 21:59:14 +07:00
|
|
|
|
2009-12-11 18:34:07 +07:00
|
|
|
config VIDEO_IR
|
|
|
|
tristate
|
|
|
|
depends on IR_CORE
|
|
|
|
default IR_CORE
|
2010-03-25 06:47:53 +07:00
|
|
|
|
2010-08-09 20:07:20 +07:00
|
|
|
if IR_CORE
|
|
|
|
|
2010-07-03 11:06:57 +07:00
|
|
|
config LIRC
|
|
|
|
tristate
|
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option to build the Linux Infrared Remote
|
|
|
|
Control (LIRC) core device interface driver. The LIRC
|
|
|
|
interface passes raw IR to and from userspace, where the
|
2010-07-31 21:59:14 +07:00
|
|
|
LIRC daemon handles protocol decoding for IR reception and
|
2010-07-03 11:06:57 +07:00
|
|
|
encoding for IR transmitting (aka "blasting").
|
|
|
|
|
V4L/DVB: Break Remote Controller keymaps into modules
The original Remote Controller approach were very messy: a big file,
that were part of ir-common kernel module, containing 64 different
RC keymap tables, used by the V4L/DVB drivers.
Better to break each RC keymap table into a separate module,
registering them into rc core on a process similar to the fs/nls tables.
As an userspace program is now in charge of loading those tables,
adds an option to allow the complete removal of those tables from
kernelspace.
Yet, on embedded devices like Set Top Boxes and TV sets, maybe the
only available input device is the IR. So, we should keep allowing
the usage of in-kernel tables, but a latter patch should change
the default to 'n', after giving some time for distros to add
the v4l-utils with the ir-keytable program, to allow the table
load via userspace.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-04-02 13:05:46 +07:00
|
|
|
source "drivers/media/IR/keymaps/Kconfig"
|
|
|
|
|
2010-03-25 06:47:53 +07:00
|
|
|
config IR_NEC_DECODER
|
2010-04-09 19:20:11 +07:00
|
|
|
tristate "Enable IR raw decoder for the NEC protocol"
|
2010-03-25 06:47:53 +07:00
|
|
|
depends on IR_CORE
|
2010-05-15 00:09:57 +07:00
|
|
|
select BITREVERSE
|
2010-03-25 06:47:53 +07:00
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option if you have IR with NEC protocol, and
|
|
|
|
if the IR is decoded in software
|
2010-04-04 20:27:20 +07:00
|
|
|
|
|
|
|
config IR_RC5_DECODER
|
2010-04-09 19:20:11 +07:00
|
|
|
tristate "Enable IR raw decoder for the RC-5 protocol"
|
2010-04-04 20:27:20 +07:00
|
|
|
depends on IR_CORE
|
2010-05-27 00:08:51 +07:00
|
|
|
select BITREVERSE
|
2010-04-04 20:27:20 +07:00
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option if you have IR with RC-5 protocol, and
|
|
|
|
if the IR is decoded in software
|
2010-04-09 06:04:40 +07:00
|
|
|
|
|
|
|
config IR_RC6_DECODER
|
|
|
|
tristate "Enable IR raw decoder for the RC6 protocol"
|
|
|
|
depends on IR_CORE
|
2010-05-27 00:08:51 +07:00
|
|
|
select BITREVERSE
|
2010-04-09 06:04:40 +07:00
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option if you have an infrared remote control which
|
|
|
|
uses the RC6 protocol, and you need software decoding support.
|
2010-04-17 04:29:02 +07:00
|
|
|
|
2010-04-16 04:46:05 +07:00
|
|
|
config IR_JVC_DECODER
|
|
|
|
tristate "Enable IR raw decoder for the JVC protocol"
|
|
|
|
depends on IR_CORE
|
2010-07-08 06:41:15 +07:00
|
|
|
select BITREVERSE
|
2010-04-16 04:46:05 +07:00
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option if you have an infrared remote control which
|
|
|
|
uses the JVC protocol, and you need software decoding support.
|
|
|
|
|
2010-04-16 04:46:10 +07:00
|
|
|
config IR_SONY_DECODER
|
|
|
|
tristate "Enable IR raw decoder for the Sony protocol"
|
|
|
|
depends on IR_CORE
|
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option if you have an infrared remote control which
|
|
|
|
uses the Sony protocol, and you need software decoding support.
|
|
|
|
|
2010-07-03 11:07:53 +07:00
|
|
|
config IR_LIRC_CODEC
|
|
|
|
tristate "Enable IR to LIRC bridge"
|
|
|
|
depends on IR_CORE
|
|
|
|
depends on LIRC
|
|
|
|
default y
|
|
|
|
|
|
|
|
---help---
|
|
|
|
Enable this option to pass raw IR to and from userspace via
|
|
|
|
the LIRC interface.
|
|
|
|
|
2010-04-17 04:29:02 +07:00
|
|
|
config IR_IMON
|
|
|
|
tristate "SoundGraph iMON Receiver and Display"
|
|
|
|
depends on USB_ARCH_HAS_HCD
|
|
|
|
depends on IR_CORE
|
|
|
|
select USB
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to use a SoundGraph iMON (aka Antec Veris)
|
|
|
|
IR Receiver and/or LCD/VFD/VGA display.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called imon.
|
2010-06-02 03:32:08 +07:00
|
|
|
|
|
|
|
config IR_MCEUSB
|
|
|
|
tristate "Windows Media Center Ed. eHome Infrared Transceiver"
|
|
|
|
depends on USB_ARCH_HAS_HCD
|
|
|
|
depends on IR_CORE
|
|
|
|
select USB
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to use a Windows Media Center Edition
|
|
|
|
eHome Infrared Transceiver.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called mceusb.
|
2010-08-03 01:46:03 +07:00
|
|
|
|
2010-07-31 21:59:26 +07:00
|
|
|
config IR_ENE
|
|
|
|
tristate "ENE eHome Receiver/Transciever (pnp id: ENE0100/ENE02xxx)"
|
|
|
|
depends on PNP
|
|
|
|
depends on IR_CORE
|
|
|
|
---help---
|
|
|
|
Say Y here to enable support for integrated infrared receiver
|
|
|
|
/transciever made by ENE.
|
|
|
|
|
|
|
|
You can see if you have it by looking at lspnp output.
|
|
|
|
Output should include ENE0100 ENE0200 or something similiar.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called ene_ir.
|
|
|
|
|
2010-08-03 01:46:03 +07:00
|
|
|
config IR_STREAMZAP
|
|
|
|
tristate "Streamzap PC Remote IR Receiver"
|
|
|
|
depends on USB_ARCH_HAS_HCD
|
|
|
|
depends on IR_CORE
|
|
|
|
select USB
|
|
|
|
---help---
|
|
|
|
Say Y here if you want to use a Streamzap PC Remote
|
|
|
|
Infrared Receiver.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here: the
|
|
|
|
module will be called streamzap.
|
2010-07-31 21:59:14 +07:00
|
|
|
|
|
|
|
endif #IR_CORE
|