rc-cinergy-1400.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* cinergy-1400.h - Keytable for cinergy_1400 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. /* Cinergy 1400 DVB-T */
  15. static struct rc_map_table cinergy_1400[] = {
  16. { 0x01, KEY_POWER },
  17. { 0x02, KEY_1 },
  18. { 0x03, KEY_2 },
  19. { 0x04, KEY_3 },
  20. { 0x05, KEY_4 },
  21. { 0x06, KEY_5 },
  22. { 0x07, KEY_6 },
  23. { 0x08, KEY_7 },
  24. { 0x09, KEY_8 },
  25. { 0x0a, KEY_9 },
  26. { 0x0c, KEY_0 },
  27. { 0x0b, KEY_VIDEO },
  28. { 0x0d, KEY_REFRESH },
  29. { 0x0e, KEY_SELECT },
  30. { 0x0f, KEY_EPG },
  31. { 0x10, KEY_UP },
  32. { 0x11, KEY_LEFT },
  33. { 0x12, KEY_OK },
  34. { 0x13, KEY_RIGHT },
  35. { 0x14, KEY_DOWN },
  36. { 0x15, KEY_TEXT },
  37. { 0x16, KEY_INFO },
  38. { 0x17, KEY_RED },
  39. { 0x18, KEY_GREEN },
  40. { 0x19, KEY_YELLOW },
  41. { 0x1a, KEY_BLUE },
  42. { 0x1b, KEY_CHANNELUP },
  43. { 0x1c, KEY_VOLUMEUP },
  44. { 0x1d, KEY_MUTE },
  45. { 0x1e, KEY_VOLUMEDOWN },
  46. { 0x1f, KEY_CHANNELDOWN },
  47. { 0x40, KEY_PAUSE },
  48. { 0x4c, KEY_PLAY },
  49. { 0x58, KEY_RECORD },
  50. { 0x54, KEY_PREVIOUS },
  51. { 0x48, KEY_STOP },
  52. { 0x5c, KEY_NEXT },
  53. };
  54. static struct rc_map_list cinergy_1400_map = {
  55. .map = {
  56. .scan = cinergy_1400,
  57. .size = ARRAY_SIZE(cinergy_1400),
  58. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  59. .name = RC_MAP_CINERGY_1400,
  60. }
  61. };
  62. static int __init init_rc_map_cinergy_1400(void)
  63. {
  64. return rc_map_register(&cinergy_1400_map);
  65. }
  66. static void __exit exit_rc_map_cinergy_1400(void)
  67. {
  68. rc_map_unregister(&cinergy_1400_map);
  69. }
  70. module_init(init_rc_map_cinergy_1400)
  71. module_exit(exit_rc_map_cinergy_1400)
  72. MODULE_LICENSE("GPL");
  73. MODULE_AUTHOR("Mauro Carvalho Chehab");