rc-terratec-cinergy-xs.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* terratec-cinergy-xs.h - Keytable for terratec_cinergy_xs Remote Controller
  2. *
  3. * keymap imported from ir-keymaps.c
  4. *
  5. * Copyright (c) 2010 by Mauro Carvalho Chehab
  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. #include <linux/module.h>
  14. /* Terratec Cinergy Hybrid T USB XS
  15. Devin Heitmueller <dheitmueller@linuxtv.org>
  16. */
  17. static struct rc_map_table terratec_cinergy_xs[] = {
  18. { 0x41, KEY_HOME},
  19. { 0x01, KEY_POWER},
  20. { 0x42, KEY_MENU},
  21. { 0x02, KEY_1},
  22. { 0x03, KEY_2},
  23. { 0x04, KEY_3},
  24. { 0x43, KEY_SUBTITLE},
  25. { 0x05, KEY_4},
  26. { 0x06, KEY_5},
  27. { 0x07, KEY_6},
  28. { 0x44, KEY_TEXT},
  29. { 0x08, KEY_7},
  30. { 0x09, KEY_8},
  31. { 0x0a, KEY_9},
  32. { 0x45, KEY_DELETE},
  33. { 0x0b, KEY_TUNER},
  34. { 0x0c, KEY_0},
  35. { 0x0d, KEY_MODE},
  36. { 0x46, KEY_TV},
  37. { 0x47, KEY_DVD},
  38. { 0x49, KEY_VIDEO},
  39. { 0x4b, KEY_AUX},
  40. { 0x10, KEY_UP},
  41. { 0x11, KEY_LEFT},
  42. { 0x12, KEY_OK},
  43. { 0x13, KEY_RIGHT},
  44. { 0x14, KEY_DOWN},
  45. { 0x0f, KEY_EPG},
  46. { 0x16, KEY_INFO},
  47. { 0x4d, KEY_BACKSPACE},
  48. { 0x1c, KEY_VOLUMEUP},
  49. { 0x4c, KEY_PLAY},
  50. { 0x1b, KEY_CHANNELUP},
  51. { 0x1e, KEY_VOLUMEDOWN},
  52. { 0x1d, KEY_MUTE},
  53. { 0x1f, KEY_CHANNELDOWN},
  54. { 0x17, KEY_RED},
  55. { 0x18, KEY_GREEN},
  56. { 0x19, KEY_YELLOW},
  57. { 0x1a, KEY_BLUE},
  58. { 0x58, KEY_RECORD},
  59. { 0x48, KEY_STOP},
  60. { 0x40, KEY_PAUSE},
  61. { 0x54, KEY_LAST},
  62. { 0x4e, KEY_REWIND},
  63. { 0x4f, KEY_FASTFORWARD},
  64. { 0x5c, KEY_NEXT},
  65. };
  66. static struct rc_map_list terratec_cinergy_xs_map = {
  67. .map = {
  68. .scan = terratec_cinergy_xs,
  69. .size = ARRAY_SIZE(terratec_cinergy_xs),
  70. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  71. .name = RC_MAP_TERRATEC_CINERGY_XS,
  72. }
  73. };
  74. static int __init init_rc_map_terratec_cinergy_xs(void)
  75. {
  76. return rc_map_register(&terratec_cinergy_xs_map);
  77. }
  78. static void __exit exit_rc_map_terratec_cinergy_xs(void)
  79. {
  80. rc_map_unregister(&terratec_cinergy_xs_map);
  81. }
  82. module_init(init_rc_map_terratec_cinergy_xs)
  83. module_exit(exit_rc_map_terratec_cinergy_xs)
  84. MODULE_LICENSE("GPL");
  85. MODULE_AUTHOR("Mauro Carvalho Chehab");