rc-genius-tvgo-a11mce.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce 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. * Remote control for the Genius TVGO A11MCE
  15. * Adrian Pardini <pardo.bsso@gmail.com>
  16. */
  17. static struct rc_map_table genius_tvgo_a11mce[] = {
  18. /* Keys 0 to 9 */
  19. { 0x48, KEY_0 },
  20. { 0x09, KEY_1 },
  21. { 0x1d, KEY_2 },
  22. { 0x1f, KEY_3 },
  23. { 0x19, KEY_4 },
  24. { 0x1b, KEY_5 },
  25. { 0x11, KEY_6 },
  26. { 0x17, KEY_7 },
  27. { 0x12, KEY_8 },
  28. { 0x16, KEY_9 },
  29. { 0x54, KEY_RECORD }, /* recording */
  30. { 0x06, KEY_MUTE }, /* mute */
  31. { 0x10, KEY_POWER },
  32. { 0x40, KEY_LAST }, /* recall */
  33. { 0x4c, KEY_CHANNELUP }, /* channel / program + */
  34. { 0x00, KEY_CHANNELDOWN }, /* channel / program - */
  35. { 0x0d, KEY_VOLUMEUP },
  36. { 0x15, KEY_VOLUMEDOWN },
  37. { 0x4d, KEY_OK }, /* also labeled as Pause */
  38. { 0x1c, KEY_ZOOM }, /* full screen and Stop*/
  39. { 0x02, KEY_MODE }, /* AV Source or Rewind*/
  40. { 0x04, KEY_LIST }, /* -/-- */
  41. /* small arrows above numbers */
  42. { 0x1a, KEY_NEXT }, /* also Fast Forward */
  43. { 0x0e, KEY_PREVIOUS }, /* also Rewind */
  44. /* these are in a rather non standard layout and have
  45. an alternate name written */
  46. { 0x1e, KEY_UP }, /* Video Setting */
  47. { 0x0a, KEY_DOWN }, /* Video Default */
  48. { 0x05, KEY_CAMERA }, /* Snapshot */
  49. { 0x0c, KEY_RIGHT }, /* Hide Panel */
  50. /* Four buttons without label */
  51. { 0x49, KEY_RED },
  52. { 0x0b, KEY_GREEN },
  53. { 0x13, KEY_YELLOW },
  54. { 0x50, KEY_BLUE },
  55. };
  56. static struct rc_map_list genius_tvgo_a11mce_map = {
  57. .map = {
  58. .scan = genius_tvgo_a11mce,
  59. .size = ARRAY_SIZE(genius_tvgo_a11mce),
  60. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  61. .name = RC_MAP_GENIUS_TVGO_A11MCE,
  62. }
  63. };
  64. static int __init init_rc_map_genius_tvgo_a11mce(void)
  65. {
  66. return rc_map_register(&genius_tvgo_a11mce_map);
  67. }
  68. static void __exit exit_rc_map_genius_tvgo_a11mce(void)
  69. {
  70. rc_map_unregister(&genius_tvgo_a11mce_map);
  71. }
  72. module_init(init_rc_map_genius_tvgo_a11mce)
  73. module_exit(exit_rc_map_genius_tvgo_a11mce)
  74. MODULE_LICENSE("GPL");
  75. MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");