rc-medion-x10-digitainer.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * Medion X10 RF remote keytable (Digitainer variant)
  4. *
  5. * Copyright (C) 2012 Anssi Hannula <[email protected]>
  6. *
  7. * This keymap is for a variant that has a distinctive scrollwheel instead of
  8. * up/down buttons (tested with P/N 40009936 / 20018268), reportedly
  9. * originally shipped with Medion Digitainer but now sold separately simply as
  10. * an "X10" remote.
  11. */
  12. #include <linux/module.h>
  13. #include <media/rc-map.h>
  14. static struct rc_map_table medion_x10_digitainer[] = {
  15. { 0x02, KEY_POWER },
  16. { 0x2c, KEY_TV },
  17. { 0x2d, KEY_VIDEO },
  18. { 0x04, KEY_DVD }, /* CD/DVD */
  19. { 0x16, KEY_TEXT }, /* "teletext" icon, i.e. a screen with lines */
  20. { 0x06, KEY_AUDIO },
  21. { 0x2e, KEY_RADIO },
  22. { 0x31, KEY_EPG }, /* a screen with an open book */
  23. { 0x05, KEY_IMAGES }, /* Photo */
  24. { 0x2f, KEY_INFO },
  25. { 0x78, KEY_UP }, /* scrollwheel up 1 notch */
  26. /* 0x79..0x7f: 2-8 notches, driver repeats 0x78 entry */
  27. { 0x70, KEY_DOWN }, /* scrollwheel down 1 notch */
  28. /* 0x71..0x77: 2-8 notches, driver repeats 0x70 entry */
  29. { 0x19, KEY_MENU },
  30. { 0x1d, KEY_LEFT },
  31. { 0x1e, KEY_OK }, /* scrollwheel press */
  32. { 0x1f, KEY_RIGHT },
  33. { 0x20, KEY_BACK },
  34. { 0x09, KEY_VOLUMEUP },
  35. { 0x08, KEY_VOLUMEDOWN },
  36. { 0x00, KEY_MUTE },
  37. { 0x1b, KEY_SELECT }, /* also has "U" rotated 90 degrees CCW */
  38. { 0x0b, KEY_CHANNELUP },
  39. { 0x0c, KEY_CHANNELDOWN },
  40. { 0x1c, KEY_LAST },
  41. { 0x32, KEY_RED }, /* also Audio */
  42. { 0x33, KEY_GREEN }, /* also Subtitle */
  43. { 0x34, KEY_YELLOW }, /* also Angle */
  44. { 0x35, KEY_BLUE }, /* also Title */
  45. { 0x28, KEY_STOP },
  46. { 0x29, KEY_PAUSE },
  47. { 0x25, KEY_PLAY },
  48. { 0x21, KEY_PREVIOUS },
  49. { 0x18, KEY_CAMERA },
  50. { 0x23, KEY_NEXT },
  51. { 0x24, KEY_REWIND },
  52. { 0x27, KEY_RECORD },
  53. { 0x26, KEY_FORWARD },
  54. { 0x0d, KEY_NUMERIC_1 },
  55. { 0x0e, KEY_NUMERIC_2 },
  56. { 0x0f, KEY_NUMERIC_3 },
  57. { 0x10, KEY_NUMERIC_4 },
  58. { 0x11, KEY_NUMERIC_5 },
  59. { 0x12, KEY_NUMERIC_6 },
  60. { 0x13, KEY_NUMERIC_7 },
  61. { 0x14, KEY_NUMERIC_8 },
  62. { 0x15, KEY_NUMERIC_9 },
  63. { 0x17, KEY_NUMERIC_0 },
  64. /* these do not actually exist on this remote, but these scancodes
  65. * exist on all other Medion X10 remotes and adding them here allows
  66. * such remotes to be adequately usable with this keymap in case
  67. * this keymap is wrongly used with them (which is quite possible as
  68. * there are lots of different Medion X10 remotes): */
  69. { 0x1a, KEY_UP },
  70. { 0x22, KEY_DOWN },
  71. };
  72. static struct rc_map_list medion_x10_digitainer_map = {
  73. .map = {
  74. .scan = medion_x10_digitainer,
  75. .size = ARRAY_SIZE(medion_x10_digitainer),
  76. .rc_proto = RC_PROTO_OTHER,
  77. .name = RC_MAP_MEDION_X10_DIGITAINER,
  78. }
  79. };
  80. static int __init init_rc_map_medion_x10_digitainer(void)
  81. {
  82. return rc_map_register(&medion_x10_digitainer_map);
  83. }
  84. static void __exit exit_rc_map_medion_x10_digitainer(void)
  85. {
  86. rc_map_unregister(&medion_x10_digitainer_map);
  87. }
  88. module_init(init_rc_map_medion_x10_digitainer)
  89. module_exit(exit_rc_map_medion_x10_digitainer)
  90. MODULE_DESCRIPTION("Medion X10 RF remote keytable (Digitainer variant)");
  91. MODULE_AUTHOR("Anssi Hannula <[email protected]>");
  92. MODULE_LICENSE("GPL");