rc-rc5-hauppauge-new.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* rc5-hauppauge-new.h - Keytable for rc5_hauppauge_new 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. * Hauppauge:the newer, gray remotes (seems there are multiple
  15. * slightly different versions), shipped with cx88+ivtv cards.
  16. *
  17. * This table contains the complete RC5 code, instead of just the data part
  18. */
  19. static struct ir_scancode rc5_hauppauge_new[] = {
  20. /* Keys 0 to 9 */
  21. { 0x1e00, KEY_0 },
  22. { 0x1e01, KEY_1 },
  23. { 0x1e02, KEY_2 },
  24. { 0x1e03, KEY_3 },
  25. { 0x1e04, KEY_4 },
  26. { 0x1e05, KEY_5 },
  27. { 0x1e06, KEY_6 },
  28. { 0x1e07, KEY_7 },
  29. { 0x1e08, KEY_8 },
  30. { 0x1e09, KEY_9 },
  31. { 0x1e0a, KEY_TEXT }, /* keypad asterisk as well */
  32. { 0x1e0b, KEY_RED }, /* red button */
  33. { 0x1e0c, KEY_RADIO },
  34. { 0x1e0d, KEY_MENU },
  35. { 0x1e0e, KEY_SUBTITLE }, /* also the # key */
  36. { 0x1e0f, KEY_MUTE },
  37. { 0x1e10, KEY_VOLUMEUP },
  38. { 0x1e11, KEY_VOLUMEDOWN },
  39. { 0x1e12, KEY_PREVIOUS }, /* previous channel */
  40. { 0x1e14, KEY_UP },
  41. { 0x1e15, KEY_DOWN },
  42. { 0x1e16, KEY_LEFT },
  43. { 0x1e17, KEY_RIGHT },
  44. { 0x1e18, KEY_VIDEO }, /* Videos */
  45. { 0x1e19, KEY_AUDIO }, /* Music */
  46. /* 0x1e1a: Pictures - presume this means
  47. "Multimedia Home Platform" -
  48. no "PICTURES" key in input.h
  49. */
  50. { 0x1e1a, KEY_MHP },
  51. { 0x1e1b, KEY_EPG }, /* Guide */
  52. { 0x1e1c, KEY_TV },
  53. { 0x1e1e, KEY_NEXTSONG }, /* skip >| */
  54. { 0x1e1f, KEY_EXIT }, /* back/exit */
  55. { 0x1e20, KEY_CHANNELUP }, /* channel / program + */
  56. { 0x1e21, KEY_CHANNELDOWN }, /* channel / program - */
  57. { 0x1e22, KEY_CHANNEL }, /* source (old black remote) */
  58. { 0x1e24, KEY_PREVIOUSSONG }, /* replay |< */
  59. { 0x1e25, KEY_ENTER }, /* OK */
  60. { 0x1e26, KEY_SLEEP }, /* minimize (old black remote) */
  61. { 0x1e29, KEY_BLUE }, /* blue key */
  62. { 0x1e2e, KEY_GREEN }, /* green button */
  63. { 0x1e30, KEY_PAUSE }, /* pause */
  64. { 0x1e32, KEY_REWIND }, /* backward << */
  65. { 0x1e34, KEY_FASTFORWARD }, /* forward >> */
  66. { 0x1e35, KEY_PLAY },
  67. { 0x1e36, KEY_STOP },
  68. { 0x1e37, KEY_RECORD }, /* recording */
  69. { 0x1e38, KEY_YELLOW }, /* yellow key */
  70. { 0x1e3b, KEY_SELECT }, /* top right button */
  71. { 0x1e3c, KEY_ZOOM }, /* full */
  72. { 0x1e3d, KEY_POWER }, /* system power (green button) */
  73. };
  74. static struct rc_keymap rc5_hauppauge_new_map = {
  75. .map = {
  76. .scan = rc5_hauppauge_new,
  77. .size = ARRAY_SIZE(rc5_hauppauge_new),
  78. .ir_type = IR_TYPE_RC5,
  79. .name = RC_MAP_RC5_HAUPPAUGE_NEW,
  80. }
  81. };
  82. static int __init init_rc_map_rc5_hauppauge_new(void)
  83. {
  84. return ir_register_map(&rc5_hauppauge_new_map);
  85. }
  86. static void __exit exit_rc_map_rc5_hauppauge_new(void)
  87. {
  88. ir_unregister_map(&rc5_hauppauge_new_map);
  89. }
  90. module_init(init_rc_map_rc5_hauppauge_new)
  91. module_exit(exit_rc_map_rc5_hauppauge_new)
  92. MODULE_LICENSE("GPL");
  93. MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");