rc-msi-tvanywhere-plus.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. // SPDX-License-Identifier: GPL-2.0+
  2. // msi-tvanywhere-plus.h - Keytable for msi_tvanywhere_plus Remote Controller
  3. //
  4. // keymap imported from ir-keymaps.c
  5. //
  6. // Copyright (c) 2010 by Mauro Carvalho Chehab
  7. #include <media/rc-map.h>
  8. #include <linux/module.h>
  9. /*
  10. Keycodes for remote on the MSI TV@nywhere Plus. The controller IC on the card
  11. is marked "KS003". The controller is I2C at address 0x30, but does not seem
  12. to respond to probes until a read is performed from a valid device.
  13. I don't know why...
  14. Note: This remote may be of similar or identical design to the
  15. Pixelview remote (?). The raw codes and duplicate button codes
  16. appear to be the same.
  17. Henry Wong <henry@stuffedcow.net>
  18. Some changes to formatting and keycodes by Mark Schultz <n9xmj@yahoo.com>
  19. */
  20. static struct rc_map_table msi_tvanywhere_plus[] = {
  21. /* ---- Remote Button Layout ----
  22. POWER SOURCE SCAN MUTE
  23. TV/FM 1 2 3
  24. |> 4 5 6
  25. <| 7 8 9
  26. ^^UP 0 + RECALL
  27. vvDN RECORD STOP PLAY
  28. MINIMIZE ZOOM
  29. CH+
  30. VOL- VOL+
  31. CH-
  32. SNAPSHOT MTS
  33. << FUNC >> RESET
  34. */
  35. { 0x01, KEY_1 }, /* 1 */
  36. { 0x0b, KEY_2 }, /* 2 */
  37. { 0x1b, KEY_3 }, /* 3 */
  38. { 0x05, KEY_4 }, /* 4 */
  39. { 0x09, KEY_5 }, /* 5 */
  40. { 0x15, KEY_6 }, /* 6 */
  41. { 0x06, KEY_7 }, /* 7 */
  42. { 0x0a, KEY_8 }, /* 8 */
  43. { 0x12, KEY_9 }, /* 9 */
  44. { 0x02, KEY_0 }, /* 0 */
  45. { 0x10, KEY_KPPLUS }, /* + */
  46. { 0x13, KEY_AGAIN }, /* Recall */
  47. { 0x1e, KEY_POWER }, /* Power */
  48. { 0x07, KEY_VIDEO }, /* Source */
  49. { 0x1c, KEY_SEARCH }, /* Scan */
  50. { 0x18, KEY_MUTE }, /* Mute */
  51. { 0x03, KEY_RADIO }, /* TV/FM */
  52. /* The next four keys are duplicates that appear to send the
  53. same IR code as Ch+, Ch-, >>, and << . The raw code assigned
  54. to them is the actual code + 0x20 - they will never be
  55. detected as such unless some way is discovered to distinguish
  56. these buttons from those that have the same code. */
  57. { 0x3f, KEY_RIGHT }, /* |> and Ch+ */
  58. { 0x37, KEY_LEFT }, /* <| and Ch- */
  59. { 0x2c, KEY_UP }, /* ^^Up and >> */
  60. { 0x24, KEY_DOWN }, /* vvDn and << */
  61. { 0x00, KEY_RECORD }, /* Record */
  62. { 0x08, KEY_STOP }, /* Stop */
  63. { 0x11, KEY_PLAY }, /* Play */
  64. { 0x0f, KEY_CLOSE }, /* Minimize */
  65. { 0x19, KEY_ZOOM }, /* Zoom */
  66. { 0x1a, KEY_CAMERA }, /* Snapshot */
  67. { 0x0d, KEY_LANGUAGE }, /* MTS */
  68. { 0x14, KEY_VOLUMEDOWN }, /* Vol- */
  69. { 0x16, KEY_VOLUMEUP }, /* Vol+ */
  70. { 0x17, KEY_CHANNELDOWN }, /* Ch- */
  71. { 0x1f, KEY_CHANNELUP }, /* Ch+ */
  72. { 0x04, KEY_REWIND }, /* << */
  73. { 0x0e, KEY_MENU }, /* Function */
  74. { 0x0c, KEY_FASTFORWARD }, /* >> */
  75. { 0x1d, KEY_RESTART }, /* Reset */
  76. };
  77. static struct rc_map_list msi_tvanywhere_plus_map = {
  78. .map = {
  79. .scan = msi_tvanywhere_plus,
  80. .size = ARRAY_SIZE(msi_tvanywhere_plus),
  81. .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */
  82. .name = RC_MAP_MSI_TVANYWHERE_PLUS,
  83. }
  84. };
  85. static int __init init_rc_map_msi_tvanywhere_plus(void)
  86. {
  87. return rc_map_register(&msi_tvanywhere_plus_map);
  88. }
  89. static void __exit exit_rc_map_msi_tvanywhere_plus(void)
  90. {
  91. rc_map_unregister(&msi_tvanywhere_plus_map);
  92. }
  93. module_init(init_rc_map_msi_tvanywhere_plus)
  94. module_exit(exit_rc_map_msi_tvanywhere_plus)
  95. MODULE_LICENSE("GPL");
  96. MODULE_AUTHOR("Mauro Carvalho Chehab");