rc-tivo.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /* rc-tivo.c - Keytable for TiVo remotes
  2. *
  3. * Copyright (c) 2011 by Jarod Wilson <jarod@redhat.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. */
  10. #include <media/rc-map.h>
  11. #include <linux/module.h>
  12. /*
  13. * Initial mapping is for the TiVo remote included in the Nero LiquidTV bundle,
  14. * which also ships with a TiVo-branded IR transceiver, supported by the mceusb
  15. * driver. Note that the remote uses an NEC-ish protocol, but instead of having
  16. * a command/not_command pair, it has a vendor ID of 0xa10c, but some keys, the
  17. * NEC extended checksums do pass, so the table presently has the intended
  18. * values and the checksum-passed versions for those keys.
  19. */
  20. static struct rc_map_table tivo[] = {
  21. { 0xa10c900f, KEY_MEDIA }, /* TiVo Button */
  22. { 0xa10c0807, KEY_POWER2 }, /* TV Power */
  23. { 0xa10c8807, KEY_TV }, /* Live TV/Swap */
  24. { 0xa10c2c03, KEY_VIDEO_NEXT }, /* TV Input */
  25. { 0xa10cc807, KEY_INFO },
  26. { 0xa10cfa05, KEY_CYCLEWINDOWS }, /* Window */
  27. { 0x0085305f, KEY_CYCLEWINDOWS },
  28. { 0xa10c6c03, KEY_EPG }, /* Guide */
  29. { 0xa10c2807, KEY_UP },
  30. { 0xa10c6807, KEY_DOWN },
  31. { 0xa10ce807, KEY_LEFT },
  32. { 0xa10ca807, KEY_RIGHT },
  33. { 0xa10c1807, KEY_SCROLLDOWN }, /* Red Thumbs Down */
  34. { 0xa10c9807, KEY_SELECT },
  35. { 0xa10c5807, KEY_SCROLLUP }, /* Green Thumbs Up */
  36. { 0xa10c3807, KEY_VOLUMEUP },
  37. { 0xa10cb807, KEY_VOLUMEDOWN },
  38. { 0xa10cd807, KEY_MUTE },
  39. { 0xa10c040b, KEY_RECORD },
  40. { 0xa10c7807, KEY_CHANNELUP },
  41. { 0xa10cf807, KEY_CHANNELDOWN },
  42. { 0x0085301f, KEY_CHANNELDOWN },
  43. { 0xa10c840b, KEY_PLAY },
  44. { 0xa10cc40b, KEY_PAUSE },
  45. { 0xa10ca40b, KEY_SLOW },
  46. { 0xa10c440b, KEY_REWIND },
  47. { 0xa10c240b, KEY_FASTFORWARD },
  48. { 0xa10c640b, KEY_PREVIOUS },
  49. { 0xa10ce40b, KEY_NEXT }, /* ->| */
  50. { 0xa10c220d, KEY_ZOOM }, /* Aspect */
  51. { 0xa10c120d, KEY_STOP },
  52. { 0xa10c520d, KEY_DVD }, /* DVD Menu */
  53. { 0xa10c140b, KEY_NUMERIC_1 },
  54. { 0xa10c940b, KEY_NUMERIC_2 },
  55. { 0xa10c540b, KEY_NUMERIC_3 },
  56. { 0xa10cd40b, KEY_NUMERIC_4 },
  57. { 0xa10c340b, KEY_NUMERIC_5 },
  58. { 0xa10cb40b, KEY_NUMERIC_6 },
  59. { 0xa10c740b, KEY_NUMERIC_7 },
  60. { 0xa10cf40b, KEY_NUMERIC_8 },
  61. { 0x0085302f, KEY_NUMERIC_8 },
  62. { 0xa10c0c03, KEY_NUMERIC_9 },
  63. { 0xa10c8c03, KEY_NUMERIC_0 },
  64. { 0xa10ccc03, KEY_ENTER },
  65. { 0xa10c4c03, KEY_CLEAR },
  66. };
  67. static struct rc_map_list tivo_map = {
  68. .map = {
  69. .scan = tivo,
  70. .size = ARRAY_SIZE(tivo),
  71. .rc_type = RC_TYPE_NEC,
  72. .name = RC_MAP_TIVO,
  73. }
  74. };
  75. static int __init init_rc_map_tivo(void)
  76. {
  77. return rc_map_register(&tivo_map);
  78. }
  79. static void __exit exit_rc_map_tivo(void)
  80. {
  81. rc_map_unregister(&tivo_map);
  82. }
  83. module_init(init_rc_map_tivo)
  84. module_exit(exit_rc_map_tivo)
  85. MODULE_LICENSE("GPL");
  86. MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>");