Kconfig 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. config IR_IMG
  2. tristate "ImgTec IR Decoder"
  3. depends on RC_CORE
  4. select IR_IMG_HW if !IR_IMG_RAW
  5. help
  6. Say Y or M here if you want to use the ImgTec infrared decoder
  7. functionality found in SoCs such as TZ1090.
  8. config IR_IMG_RAW
  9. bool "Raw decoder"
  10. depends on IR_IMG
  11. help
  12. Say Y here to enable the raw mode driver which passes raw IR signal
  13. changes to the IR raw decoders for software decoding. This is much
  14. less reliable (due to lack of timestamps) and consumes more
  15. processing power than using hardware decode, but can be useful for
  16. testing, debug, and to make more protocols available.
  17. config IR_IMG_HW
  18. bool "Hardware decoder"
  19. depends on IR_IMG
  20. help
  21. Say Y here to enable the hardware decode driver which decodes the IR
  22. signals in hardware. This is more reliable, consumes less processing
  23. power since only a single interrupt is received for each scancode,
  24. and allows an IR scancode to be used as a wake event.
  25. config IR_IMG_NEC
  26. bool "NEC protocol support"
  27. depends on IR_IMG_HW
  28. help
  29. Say Y here to enable support for the NEC, extended NEC, and 32-bit
  30. NEC protocols in the ImgTec infrared decoder block.
  31. config IR_IMG_JVC
  32. bool "JVC protocol support"
  33. depends on IR_IMG_HW
  34. help
  35. Say Y here to enable support for the JVC protocol in the ImgTec
  36. infrared decoder block.
  37. config IR_IMG_SONY
  38. bool "Sony protocol support"
  39. depends on IR_IMG_HW
  40. help
  41. Say Y here to enable support for the Sony protocol in the ImgTec
  42. infrared decoder block.
  43. config IR_IMG_SHARP
  44. bool "Sharp protocol support"
  45. depends on IR_IMG_HW
  46. help
  47. Say Y here to enable support for the Sharp protocol in the ImgTec
  48. infrared decoder block.
  49. config IR_IMG_SANYO
  50. bool "Sanyo protocol support"
  51. depends on IR_IMG_HW
  52. help
  53. Say Y here to enable support for the Sanyo protocol (used by Sanyo,
  54. Aiwa, Chinon remotes) in the ImgTec infrared decoder block.