rc-core.rst 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. Remote Controller devices
  2. -------------------------
  3. Remote Controller core
  4. ~~~~~~~~~~~~~~~~~~~~~~
  5. The remote controller core implements infrastructure to receive and send
  6. remote controller keyboard keystrokes and mouse events.
  7. Every time a key is pressed on a remote controller, a scan code is produced.
  8. Also, on most hardware, keeping a key pressed for more than a few dozens of
  9. milliseconds produce a repeat key event. That's somewhat similar to what
  10. a normal keyboard or mouse is handled internally on Linux\ [#f1]_. So, the
  11. remote controller core is implemented on the top of the linux input/evdev
  12. interface.
  13. .. [#f1]
  14. The main difference is that, on keyboard events, the keyboard controller
  15. produces one event for a key press and another one for key release. On
  16. infrared-based remote controllers, there's no key release event. Instead,
  17. an extra code is produced to indicate key repeats.
  18. However, most of the remote controllers use infrared (IR) to transmit signals.
  19. As there are several protocols used to modulate infrared signals, one
  20. important part of the core is dedicated to adjust the driver and the core
  21. system to support the infrared protocol used by the emitter.
  22. The infrared transmission is done by blinking a infrared emitter using a
  23. carrier. The carrier can be switched on or off by the IR transmitter
  24. hardware. When the carrier is switched on, it is called *PULSE*.
  25. When the carrier is switched off, it is called *SPACE*.
  26. In other words, a typical IR transmission can be viewed as a sequence of
  27. *PULSE* and *SPACE* events, each with a given duration.
  28. The carrier parameters (frequency, duty cycle) and the intervals for
  29. *PULSE* and *SPACE* events depend on the protocol.
  30. For example, the NEC protocol uses a carrier of 38kHz, and transmissions
  31. start with a 9ms *PULSE* and a 4.5ms SPACE. It then transmits 16 bits of
  32. scan code, being 8 bits for address (usually it is a fixed number for a
  33. given remote controller), followed by 8 bits of code. A bit "1" is modulated
  34. with 560µs *PULSE* followed by 1690µs *SPACE* and a bit "0" is modulated
  35. with 560µs *PULSE* followed by 560µs *SPACE*.
  36. At receiver, a simple low-pass filter can be used to convert the received
  37. signal in a sequence of *PULSE/SPACE* events, filtering out the carrier
  38. frequency. Due to that, the receiver doesn't care about the carrier's
  39. actual frequency parameters: all it has to do is to measure the amount
  40. of time it receives *PULSE/SPACE* events.
  41. So, a simple IR receiver hardware will just provide a sequence of timings
  42. for those events to the Kernel. The drivers for hardware with such kind of
  43. receivers are identified by ``RC_DRIVER_IR_RAW``, as defined by
  44. :c:type:`rc_driver_type`\ [#f2]_. Other hardware come with a
  45. microcontroller that decode the *PULSE/SPACE* sequence and return scan
  46. codes to the Kernel. Such kind of receivers are identified
  47. by ``RC_DRIVER_SCANCODE``.
  48. .. [#f2]
  49. The RC core also supports devices that have just IR emitters,
  50. without any receivers. Right now, all such devices work only in
  51. raw TX mode. Such kind of hardware is identified as
  52. ``RC_DRIVER_IR_RAW_TX``.
  53. When the RC core receives events produced by ``RC_DRIVER_IR_RAW`` IR
  54. receivers, it needs to decode the IR protocol, in order to obtain the
  55. corresponding scan code. The protocols supported by the RC core are
  56. defined at enum :c:type:`rc_proto`.
  57. When the RC code receives a scan code (either directly, by a driver
  58. of the type ``RC_DRIVER_SCANCODE``, or via its IR decoders), it needs
  59. to convert into a Linux input event code. This is done via a mapping
  60. table.
  61. The Kernel has support for mapping tables available on most media
  62. devices. It also supports loading a table in runtime, via some
  63. sysfs nodes. See the :ref:`RC userspace API <Remote_controllers_Intro>`
  64. for more details.
  65. Remote controller data structures and functions
  66. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  67. .. kernel-doc:: include/media/rc-core.h
  68. .. kernel-doc:: include/media/rc-map.h