rc-lme2510.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. /* LME2510 remote control
  2. *
  3. *
  4. * Copyright (C) 2010 Malcolm Priestley (tvboxspy@gmail.com)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. */
  11. #include <media/rc-map.h>
  12. #include <linux/module.h>
  13. static struct rc_map_table lme2510_rc[] = {
  14. /* Type 1 - 26 buttons */
  15. { 0x10ed45, KEY_0 },
  16. { 0x10ed5f, KEY_1 },
  17. { 0x10ed50, KEY_2 },
  18. { 0x10ed5d, KEY_3 },
  19. { 0x10ed41, KEY_4 },
  20. { 0x10ed0a, KEY_5 },
  21. { 0x10ed42, KEY_6 },
  22. { 0x10ed47, KEY_7 },
  23. { 0x10ed49, KEY_8 },
  24. { 0x10ed05, KEY_9 },
  25. { 0x10ed43, KEY_POWER },
  26. { 0x10ed46, KEY_SUBTITLE },
  27. { 0x10ed06, KEY_PAUSE },
  28. { 0x10ed03, KEY_MEDIA_REPEAT},
  29. { 0x10ed02, KEY_PAUSE },
  30. { 0x10ed5e, KEY_VOLUMEUP },
  31. { 0x10ed5c, KEY_VOLUMEDOWN },
  32. { 0x10ed09, KEY_CHANNELUP },
  33. { 0x10ed1a, KEY_CHANNELDOWN },
  34. { 0x10ed1e, KEY_PLAY },
  35. { 0x10ed1b, KEY_ZOOM },
  36. { 0x10ed59, KEY_MUTE },
  37. { 0x10ed5a, KEY_TV },
  38. { 0x10ed18, KEY_RECORD },
  39. { 0x10ed07, KEY_EPG },
  40. { 0x10ed01, KEY_STOP },
  41. /* Type 2 - 20 buttons */
  42. { 0xbf15, KEY_0 },
  43. { 0xbf08, KEY_1 },
  44. { 0xbf09, KEY_2 },
  45. { 0xbf0a, KEY_3 },
  46. { 0xbf0c, KEY_4 },
  47. { 0xbf0d, KEY_5 },
  48. { 0xbf0e, KEY_6 },
  49. { 0xbf10, KEY_7 },
  50. { 0xbf11, KEY_8 },
  51. { 0xbf12, KEY_9 },
  52. { 0xbf00, KEY_POWER },
  53. { 0xbf04, KEY_MEDIA_REPEAT}, /* Recall */
  54. { 0xbf1a, KEY_PAUSE }, /* Timeshift */
  55. { 0xbf02, KEY_VOLUMEUP }, /* 2 x -/+ Keys not marked */
  56. { 0xbf06, KEY_VOLUMEDOWN }, /* Volume defined as right hand*/
  57. { 0xbf01, KEY_CHANNELUP },
  58. { 0xbf05, KEY_CHANNELDOWN },
  59. { 0xbf14, KEY_ZOOM },
  60. { 0xbf18, KEY_RECORD },
  61. { 0xbf16, KEY_STOP },
  62. /* Type 3 - 20 buttons */
  63. { 0x1c, KEY_0 },
  64. { 0x07, KEY_1 },
  65. { 0x15, KEY_2 },
  66. { 0x09, KEY_3 },
  67. { 0x16, KEY_4 },
  68. { 0x19, KEY_5 },
  69. { 0x0d, KEY_6 },
  70. { 0x0c, KEY_7 },
  71. { 0x18, KEY_8 },
  72. { 0x5e, KEY_9 },
  73. { 0x45, KEY_POWER },
  74. { 0x44, KEY_MEDIA_REPEAT}, /* Recall */
  75. { 0x4a, KEY_PAUSE }, /* Timeshift */
  76. { 0x47, KEY_VOLUMEUP }, /* 2 x -/+ Keys not marked */
  77. { 0x43, KEY_VOLUMEDOWN }, /* Volume defined as right hand*/
  78. { 0x46, KEY_CHANNELUP },
  79. { 0x40, KEY_CHANNELDOWN },
  80. { 0x08, KEY_ZOOM },
  81. { 0x42, KEY_RECORD },
  82. { 0x5a, KEY_STOP },
  83. };
  84. static struct rc_map_list lme2510_map = {
  85. .map = {
  86. .scan = lme2510_rc,
  87. .size = ARRAY_SIZE(lme2510_rc),
  88. .rc_type = RC_TYPE_NEC,
  89. .name = RC_MAP_LME2510,
  90. }
  91. };
  92. static int __init init_rc_lme2510_map(void)
  93. {
  94. return rc_map_register(&lme2510_map);
  95. }
  96. static void __exit exit_rc_lme2510_map(void)
  97. {
  98. rc_map_unregister(&lme2510_map);
  99. }
  100. module_init(init_rc_lme2510_map)
  101. module_exit(exit_rc_lme2510_map)
  102. MODULE_LICENSE("GPL");
  103. MODULE_AUTHOR("Malcolm Priestley tvboxspy@gmail.com");