rc-purpletv.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* purpletv.h - Keytable for purpletv 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. static struct rc_map_table purpletv[] = {
  15. { 0x03, KEY_POWER },
  16. { 0x6f, KEY_MUTE },
  17. { 0x10, KEY_BACKSPACE }, /* Recall */
  18. { 0x11, KEY_0 },
  19. { 0x04, KEY_1 },
  20. { 0x05, KEY_2 },
  21. { 0x06, KEY_3 },
  22. { 0x08, KEY_4 },
  23. { 0x09, KEY_5 },
  24. { 0x0a, KEY_6 },
  25. { 0x0c, KEY_7 },
  26. { 0x0d, KEY_8 },
  27. { 0x0e, KEY_9 },
  28. { 0x12, KEY_DOT }, /* 100+ */
  29. { 0x07, KEY_VOLUMEUP },
  30. { 0x0b, KEY_VOLUMEDOWN },
  31. { 0x1a, KEY_KPPLUS },
  32. { 0x18, KEY_KPMINUS },
  33. { 0x15, KEY_UP },
  34. { 0x1d, KEY_DOWN },
  35. { 0x0f, KEY_CHANNELUP },
  36. { 0x13, KEY_CHANNELDOWN },
  37. { 0x48, KEY_ZOOM },
  38. { 0x1b, KEY_VIDEO }, /* Video source */
  39. { 0x1f, KEY_CAMERA }, /* Snapshot */
  40. { 0x49, KEY_LANGUAGE }, /* MTS Select */
  41. { 0x19, KEY_SEARCH }, /* Auto Scan */
  42. { 0x4b, KEY_RECORD },
  43. { 0x46, KEY_PLAY },
  44. { 0x45, KEY_PAUSE }, /* Pause */
  45. { 0x44, KEY_STOP },
  46. { 0x43, KEY_TIME }, /* Time Shift */
  47. { 0x17, KEY_CHANNEL }, /* SURF CH */
  48. { 0x40, KEY_FORWARD }, /* Forward ? */
  49. { 0x42, KEY_REWIND }, /* Backward ? */
  50. };
  51. static struct rc_map_list purpletv_map = {
  52. .map = {
  53. .scan = purpletv,
  54. .size = ARRAY_SIZE(purpletv),
  55. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  56. .name = RC_MAP_PURPLETV,
  57. }
  58. };
  59. static int __init init_rc_map_purpletv(void)
  60. {
  61. return rc_map_register(&purpletv_map);
  62. }
  63. static void __exit exit_rc_map_purpletv(void)
  64. {
  65. rc_map_unregister(&purpletv_map);
  66. }
  67. module_init(init_rc_map_purpletv)
  68. module_exit(exit_rc_map_purpletv)
  69. MODULE_LICENSE("GPL");
  70. MODULE_AUTHOR("Mauro Carvalho Chehab");