rc-it913x-v1.c 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /* ITE Generic remotes Version 1
  2. *
  3. * Copyright (C) 2012 Malcolm Priestley (tvboxspy@gmail.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. static struct rc_map_table it913x_v1_rc[] = {
  13. /* Type 1 */
  14. { 0x61d601, KEY_VIDEO }, /* Source */
  15. { 0x61d602, KEY_3 },
  16. { 0x61d603, KEY_POWER }, /* ShutDown */
  17. { 0x61d604, KEY_1 },
  18. { 0x61d605, KEY_5 },
  19. { 0x61d606, KEY_6 },
  20. { 0x61d607, KEY_CHANNELDOWN }, /* CH- */
  21. { 0x61d608, KEY_2 },
  22. { 0x61d609, KEY_CHANNELUP }, /* CH+ */
  23. { 0x61d60a, KEY_9 },
  24. { 0x61d60b, KEY_ZOOM }, /* Zoom */
  25. { 0x61d60c, KEY_7 },
  26. { 0x61d60d, KEY_8 },
  27. { 0x61d60e, KEY_VOLUMEUP }, /* Vol+ */
  28. { 0x61d60f, KEY_4 },
  29. { 0x61d610, KEY_ESC }, /* [back up arrow] */
  30. { 0x61d611, KEY_0 },
  31. { 0x61d612, KEY_OK }, /* [enter arrow] */
  32. { 0x61d613, KEY_VOLUMEDOWN }, /* Vol- */
  33. { 0x61d614, KEY_RECORD }, /* Rec */
  34. { 0x61d615, KEY_STOP }, /* Stop */
  35. { 0x61d616, KEY_PLAY }, /* Play */
  36. { 0x61d617, KEY_MUTE }, /* Mute */
  37. { 0x61d618, KEY_UP },
  38. { 0x61d619, KEY_DOWN },
  39. { 0x61d61a, KEY_LEFT },
  40. { 0x61d61b, KEY_RIGHT },
  41. { 0x61d61c, KEY_RED },
  42. { 0x61d61d, KEY_GREEN },
  43. { 0x61d61e, KEY_YELLOW },
  44. { 0x61d61f, KEY_BLUE },
  45. { 0x61d643, KEY_POWER2 }, /* [red power button] */
  46. /* Type 2 - 20 buttons */
  47. { 0x807f0d, KEY_0 },
  48. { 0x807f04, KEY_1 },
  49. { 0x807f05, KEY_2 },
  50. { 0x807f06, KEY_3 },
  51. { 0x807f07, KEY_4 },
  52. { 0x807f08, KEY_5 },
  53. { 0x807f09, KEY_6 },
  54. { 0x807f0a, KEY_7 },
  55. { 0x807f1b, KEY_8 },
  56. { 0x807f1f, KEY_9 },
  57. { 0x807f12, KEY_POWER },
  58. { 0x807f01, KEY_MEDIA_REPEAT}, /* Recall */
  59. { 0x807f19, KEY_PAUSE }, /* Timeshift */
  60. { 0x807f1e, KEY_VOLUMEUP }, /* 2 x -/+ Keys not marked */
  61. { 0x807f03, KEY_VOLUMEDOWN }, /* Volume defined as right hand*/
  62. { 0x807f1a, KEY_CHANNELUP },
  63. { 0x807f02, KEY_CHANNELDOWN },
  64. { 0x807f0c, KEY_ZOOM },
  65. { 0x807f00, KEY_RECORD },
  66. { 0x807f0e, KEY_STOP },
  67. };
  68. static struct rc_map_list it913x_v1_map = {
  69. .map = {
  70. .scan = it913x_v1_rc,
  71. .size = ARRAY_SIZE(it913x_v1_rc),
  72. .rc_type = RC_TYPE_NEC,
  73. .name = RC_MAP_IT913X_V1,
  74. }
  75. };
  76. static int __init init_rc_it913x_v1_map(void)
  77. {
  78. return rc_map_register(&it913x_v1_map);
  79. }
  80. static void __exit exit_rc_it913x_v1_map(void)
  81. {
  82. rc_map_unregister(&it913x_v1_map);
  83. }
  84. module_init(init_rc_it913x_v1_map)
  85. module_exit(exit_rc_it913x_v1_map)
  86. MODULE_LICENSE("GPL");
  87. MODULE_AUTHOR("Malcolm Priestley tvboxspy@gmail.com");