rc-nebula.c 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // SPDX-License-Identifier: GPL-2.0+
  2. // nebula.h - Keytable for nebula 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. static struct rc_map_table nebula[] = {
  10. { 0x0000, KEY_0 },
  11. { 0x0001, KEY_1 },
  12. { 0x0002, KEY_2 },
  13. { 0x0003, KEY_3 },
  14. { 0x0004, KEY_4 },
  15. { 0x0005, KEY_5 },
  16. { 0x0006, KEY_6 },
  17. { 0x0007, KEY_7 },
  18. { 0x0008, KEY_8 },
  19. { 0x0009, KEY_9 },
  20. { 0x000a, KEY_TV },
  21. { 0x000b, KEY_AUX },
  22. { 0x000c, KEY_DVD },
  23. { 0x000d, KEY_POWER },
  24. { 0x000e, KEY_CAMERA }, /* labelled 'Picture' */
  25. { 0x000f, KEY_AUDIO },
  26. { 0x0010, KEY_INFO },
  27. { 0x0011, KEY_F13 }, /* 16:9 */
  28. { 0x0012, KEY_F14 }, /* 14:9 */
  29. { 0x0013, KEY_EPG },
  30. { 0x0014, KEY_EXIT },
  31. { 0x0015, KEY_MENU },
  32. { 0x0016, KEY_UP },
  33. { 0x0017, KEY_DOWN },
  34. { 0x0018, KEY_LEFT },
  35. { 0x0019, KEY_RIGHT },
  36. { 0x001a, KEY_ENTER },
  37. { 0x001b, KEY_CHANNELUP },
  38. { 0x001c, KEY_CHANNELDOWN },
  39. { 0x001d, KEY_VOLUMEUP },
  40. { 0x001e, KEY_VOLUMEDOWN },
  41. { 0x001f, KEY_RED },
  42. { 0x0020, KEY_GREEN },
  43. { 0x0021, KEY_YELLOW },
  44. { 0x0022, KEY_BLUE },
  45. { 0x0023, KEY_SUBTITLE },
  46. { 0x0024, KEY_F15 }, /* AD */
  47. { 0x0025, KEY_TEXT },
  48. { 0x0026, KEY_MUTE },
  49. { 0x0027, KEY_REWIND },
  50. { 0x0028, KEY_STOP },
  51. { 0x0029, KEY_PLAY },
  52. { 0x002a, KEY_FASTFORWARD },
  53. { 0x002b, KEY_F16 }, /* chapter */
  54. { 0x002c, KEY_PAUSE },
  55. { 0x002d, KEY_PLAY },
  56. { 0x002e, KEY_RECORD },
  57. { 0x002f, KEY_F17 }, /* picture in picture */
  58. { 0x0030, KEY_KPPLUS }, /* zoom in */
  59. { 0x0031, KEY_KPMINUS }, /* zoom out */
  60. { 0x0032, KEY_F18 }, /* capture */
  61. { 0x0033, KEY_F19 }, /* web */
  62. { 0x0034, KEY_EMAIL },
  63. { 0x0035, KEY_PHONE },
  64. { 0x0036, KEY_PC },
  65. };
  66. static struct rc_map_list nebula_map = {
  67. .map = {
  68. .scan = nebula,
  69. .size = ARRAY_SIZE(nebula),
  70. .rc_proto = RC_PROTO_RC5,
  71. .name = RC_MAP_NEBULA,
  72. }
  73. };
  74. static int __init init_rc_map_nebula(void)
  75. {
  76. return rc_map_register(&nebula_map);
  77. }
  78. static void __exit exit_rc_map_nebula(void)
  79. {
  80. rc_map_unregister(&nebula_map);
  81. }
  82. module_init(init_rc_map_nebula)
  83. module_exit(exit_rc_map_nebula)
  84. MODULE_LICENSE("GPL");
  85. MODULE_AUTHOR("Mauro Carvalho Chehab");