rc-rc6-mce.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. /* rc-rc6-mce.c - Keytable for Windows Media Center RC-6 remotes for use
  2. * with the Media Center Edition eHome Infrared Transceiver.
  3. *
  4. * Copyright (c) 2010 by Jarod Wilson <jarod@redhat.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. static struct ir_scancode rc6_mce[] = {
  13. { 0x800f0415, KEY_REWIND },
  14. { 0x800f0414, KEY_FASTFORWARD },
  15. { 0x800f041b, KEY_PREVIOUS },
  16. { 0x800f041a, KEY_NEXT },
  17. { 0x800f0416, KEY_PLAY },
  18. { 0x800f0418, KEY_PAUSE },
  19. { 0x800f0419, KEY_STOP },
  20. { 0x800f0417, KEY_RECORD },
  21. { 0x800f041e, KEY_UP },
  22. { 0x800f041f, KEY_DOWN },
  23. { 0x800f0420, KEY_LEFT },
  24. { 0x800f0421, KEY_RIGHT },
  25. { 0x800f040b, KEY_ENTER },
  26. { 0x800f0422, KEY_OK },
  27. { 0x800f0423, KEY_EXIT },
  28. { 0x800f040a, KEY_DELETE },
  29. { 0x800f040e, KEY_MUTE },
  30. { 0x800f0410, KEY_VOLUMEUP },
  31. { 0x800f0411, KEY_VOLUMEDOWN },
  32. { 0x800f0412, KEY_CHANNELUP },
  33. { 0x800f0413, KEY_CHANNELDOWN },
  34. { 0x800f0401, KEY_NUMERIC_1 },
  35. { 0x800f0402, KEY_NUMERIC_2 },
  36. { 0x800f0403, KEY_NUMERIC_3 },
  37. { 0x800f0404, KEY_NUMERIC_4 },
  38. { 0x800f0405, KEY_NUMERIC_5 },
  39. { 0x800f0406, KEY_NUMERIC_6 },
  40. { 0x800f0407, KEY_NUMERIC_7 },
  41. { 0x800f0408, KEY_NUMERIC_8 },
  42. { 0x800f0409, KEY_NUMERIC_9 },
  43. { 0x800f0400, KEY_NUMERIC_0 },
  44. { 0x800f041d, KEY_NUMERIC_STAR },
  45. { 0x800f041c, KEY_NUMERIC_POUND },
  46. { 0x800f0446, KEY_TV },
  47. { 0x800f0447, KEY_AUDIO }, /* My Music */
  48. { 0x800f0448, KEY_PVR }, /* RecordedTV */
  49. { 0x800f0449, KEY_CAMERA },
  50. { 0x800f044a, KEY_VIDEO },
  51. { 0x800f0424, KEY_DVD },
  52. { 0x800f0425, KEY_TUNER }, /* LiveTV */
  53. { 0x800f0450, KEY_RADIO },
  54. { 0x800f044c, KEY_LANGUAGE },
  55. { 0x800f0427, KEY_ZOOM }, /* Aspect */
  56. { 0x800f045b, KEY_RED },
  57. { 0x800f045c, KEY_GREEN },
  58. { 0x800f045d, KEY_YELLOW },
  59. { 0x800f045e, KEY_BLUE },
  60. { 0x800f040f, KEY_INFO },
  61. { 0x800f0426, KEY_EPG }, /* Guide */
  62. { 0x800f045a, KEY_SUBTITLE }, /* Caption/Teletext */
  63. { 0x800f044d, KEY_TITLE },
  64. { 0x800f040c, KEY_POWER },
  65. { 0x800f040d, KEY_PROG1 }, /* Windows MCE button */
  66. };
  67. static struct rc_keymap rc6_mce_map = {
  68. .map = {
  69. .scan = rc6_mce,
  70. .size = ARRAY_SIZE(rc6_mce),
  71. .ir_type = IR_TYPE_RC6,
  72. .name = RC_MAP_RC6_MCE,
  73. }
  74. };
  75. static int __init init_rc_map_rc6_mce(void)
  76. {
  77. return ir_register_map(&rc6_mce_map);
  78. }
  79. static void __exit exit_rc_map_rc6_mce(void)
  80. {
  81. ir_unregister_map(&rc6_mce_map);
  82. }
  83. module_init(init_rc_map_rc6_mce)
  84. module_exit(exit_rc_map_rc6_mce)
  85. MODULE_LICENSE("GPL");
  86. MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>");