rc-tivo.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /* rc-tivo.c - Keytable for TiVo remotes
  3. *
  4. * Copyright (c) 2011 by Jarod Wilson <[email protected]>
  5. */
  6. #include <media/rc-map.h>
  7. #include <linux/module.h>
  8. /*
  9. * Initial mapping is for the TiVo remote included in the Nero LiquidTV bundle,
  10. * which also ships with a TiVo-branded IR transceiver, supported by the mceusb
  11. * driver. Note that the remote uses an NEC-ish protocol, but instead of having
  12. * a command/not_command pair, it has a vendor ID of 0x3085, but some keys, the
  13. * NEC extended checksums do pass, so the table presently has the intended
  14. * values and the checksum-passed versions for those keys.
  15. */
  16. static struct rc_map_table tivo[] = {
  17. { 0x3085f009, KEY_MEDIA }, /* TiVo Button */
  18. { 0x3085e010, KEY_POWER2 }, /* TV Power */
  19. { 0x3085e011, KEY_TV }, /* Live TV/Swap */
  20. { 0x3085c034, KEY_VIDEO_NEXT }, /* TV Input */
  21. { 0x3085e013, KEY_INFO },
  22. { 0x3085a05f, KEY_CYCLEWINDOWS }, /* Window */
  23. { 0x0085305f, KEY_CYCLEWINDOWS },
  24. { 0x3085c036, KEY_EPG }, /* Guide */
  25. { 0x3085e014, KEY_UP },
  26. { 0x3085e016, KEY_DOWN },
  27. { 0x3085e017, KEY_LEFT },
  28. { 0x3085e015, KEY_RIGHT },
  29. { 0x3085e018, KEY_SCROLLDOWN }, /* Red Thumbs Down */
  30. { 0x3085e019, KEY_SELECT },
  31. { 0x3085e01a, KEY_SCROLLUP }, /* Green Thumbs Up */
  32. { 0x3085e01c, KEY_VOLUMEUP },
  33. { 0x3085e01d, KEY_VOLUMEDOWN },
  34. { 0x3085e01b, KEY_MUTE },
  35. { 0x3085d020, KEY_RECORD },
  36. { 0x3085e01e, KEY_CHANNELUP },
  37. { 0x3085e01f, KEY_CHANNELDOWN },
  38. { 0x0085301f, KEY_CHANNELDOWN },
  39. { 0x3085d021, KEY_PLAY },
  40. { 0x3085d023, KEY_PAUSE },
  41. { 0x3085d025, KEY_SLOW },
  42. { 0x3085d022, KEY_REWIND },
  43. { 0x3085d024, KEY_FASTFORWARD },
  44. { 0x3085d026, KEY_PREVIOUS },
  45. { 0x3085d027, KEY_NEXT }, /* ->| */
  46. { 0x3085b044, KEY_ZOOM }, /* Aspect */
  47. { 0x3085b048, KEY_STOP },
  48. { 0x3085b04a, KEY_DVD }, /* DVD Menu */
  49. { 0x3085d028, KEY_NUMERIC_1 },
  50. { 0x3085d029, KEY_NUMERIC_2 },
  51. { 0x3085d02a, KEY_NUMERIC_3 },
  52. { 0x3085d02b, KEY_NUMERIC_4 },
  53. { 0x3085d02c, KEY_NUMERIC_5 },
  54. { 0x3085d02d, KEY_NUMERIC_6 },
  55. { 0x3085d02e, KEY_NUMERIC_7 },
  56. { 0x3085d02f, KEY_NUMERIC_8 },
  57. { 0x0085302f, KEY_NUMERIC_8 },
  58. { 0x3085c030, KEY_NUMERIC_9 },
  59. { 0x3085c031, KEY_NUMERIC_0 },
  60. { 0x3085c033, KEY_ENTER },
  61. { 0x3085c032, KEY_CLEAR },
  62. };
  63. static struct rc_map_list tivo_map = {
  64. .map = {
  65. .scan = tivo,
  66. .size = ARRAY_SIZE(tivo),
  67. .rc_proto = RC_PROTO_NEC32,
  68. .name = RC_MAP_TIVO,
  69. }
  70. };
  71. static int __init init_rc_map_tivo(void)
  72. {
  73. return rc_map_register(&tivo_map);
  74. }
  75. static void __exit exit_rc_map_tivo(void)
  76. {
  77. rc_map_unregister(&tivo_map);
  78. }
  79. module_init(init_rc_map_tivo)
  80. module_exit(exit_rc_map_tivo)
  81. MODULE_LICENSE("GPL");
  82. MODULE_AUTHOR("Jarod Wilson <[email protected]>");