rc-msi-tvanywhere-plus.c 3.5 KB

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