rc-fusionhdtv-mce.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. // SPDX-License-Identifier: GPL-2.0+
  2. // fusionhdtv-mce.h - Keytable for fusionhdtv_mce Remote Controller
  3. //
  4. // keymap imported from ir-keymaps.c
  5. //
  6. // Copyright (c) 2010 by Mauro Carvalho Chehab
  7. #include <media/rc-map.h>
  8. #include <linux/module.h>
  9. /* DViCO FUSION HDTV MCE remote */
  10. static struct rc_map_table fusionhdtv_mce[] = {
  11. { 0x0b, KEY_1 },
  12. { 0x17, KEY_2 },
  13. { 0x1b, KEY_3 },
  14. { 0x07, KEY_4 },
  15. { 0x50, KEY_5 },
  16. { 0x54, KEY_6 },
  17. { 0x48, KEY_7 },
  18. { 0x4c, KEY_8 },
  19. { 0x58, KEY_9 },
  20. { 0x03, KEY_0 },
  21. { 0x5e, KEY_OK },
  22. { 0x51, KEY_UP },
  23. { 0x53, KEY_DOWN },
  24. { 0x5b, KEY_LEFT },
  25. { 0x5f, KEY_RIGHT },
  26. { 0x02, KEY_TV }, /* Labeled DTV on remote */
  27. { 0x0e, KEY_MP3 },
  28. { 0x1a, KEY_DVD },
  29. { 0x1e, KEY_FAVORITES }, /* Labeled CPF on remote */
  30. { 0x16, KEY_SETUP },
  31. { 0x46, KEY_POWER2 }, /* TV On/Off button on remote */
  32. { 0x0a, KEY_EPG }, /* Labeled Guide on remote */
  33. { 0x49, KEY_BACK },
  34. { 0x59, KEY_INFO }, /* Labeled MORE on remote */
  35. { 0x4d, KEY_MENU }, /* Labeled DVDMENU on remote */
  36. { 0x55, KEY_CYCLEWINDOWS }, /* Labeled ALT-TAB on remote */
  37. { 0x0f, KEY_PREVIOUSSONG }, /* Labeled |<< REPLAY on remote */
  38. { 0x12, KEY_NEXTSONG }, /* Labeled >>| SKIP on remote */
  39. { 0x42, KEY_ENTER }, /* Labeled START with a green
  40. MS windows logo on remote */
  41. { 0x15, KEY_VOLUMEUP },
  42. { 0x05, KEY_VOLUMEDOWN },
  43. { 0x11, KEY_CHANNELUP },
  44. { 0x09, KEY_CHANNELDOWN },
  45. { 0x52, KEY_CAMERA },
  46. { 0x5a, KEY_TUNER },
  47. { 0x19, KEY_OPEN },
  48. { 0x13, KEY_MODE }, /* 4:3 16:9 select */
  49. { 0x1f, KEY_ZOOM },
  50. { 0x43, KEY_REWIND },
  51. { 0x47, KEY_PLAYPAUSE },
  52. { 0x4f, KEY_FASTFORWARD },
  53. { 0x57, KEY_MUTE },
  54. { 0x0d, KEY_STOP },
  55. { 0x01, KEY_RECORD },
  56. { 0x4e, KEY_POWER },
  57. };
  58. static struct rc_map_list fusionhdtv_mce_map = {
  59. .map = {
  60. .scan = fusionhdtv_mce,
  61. .size = ARRAY_SIZE(fusionhdtv_mce),
  62. .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */
  63. .name = RC_MAP_FUSIONHDTV_MCE,
  64. }
  65. };
  66. static int __init init_rc_map_fusionhdtv_mce(void)
  67. {
  68. return rc_map_register(&fusionhdtv_mce_map);
  69. }
  70. static void __exit exit_rc_map_fusionhdtv_mce(void)
  71. {
  72. rc_map_unregister(&fusionhdtv_mce_map);
  73. }
  74. module_init(init_rc_map_fusionhdtv_mce)
  75. module_exit(exit_rc_map_fusionhdtv_mce)
  76. MODULE_LICENSE("GPL");
  77. MODULE_AUTHOR("Mauro Carvalho Chehab");