rc-dntv-live-dvbt-pro.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /* dntv-live-dvbt-pro.h - Keytable for dntv_live_dvbt_pro Remote Controller
  2. *
  3. * keymap imported from ir-keymaps.c
  4. *
  5. * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
  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. /* DigitalNow DNTV Live! DVB-T Pro Remote */
  14. static struct rc_map_table dntv_live_dvbt_pro[] = {
  15. { 0x16, KEY_POWER },
  16. { 0x5b, KEY_HOME },
  17. { 0x55, KEY_TV }, /* live tv */
  18. { 0x58, KEY_TUNER }, /* digital Radio */
  19. { 0x5a, KEY_RADIO }, /* FM radio */
  20. { 0x59, KEY_DVD }, /* dvd menu */
  21. { 0x03, KEY_1 },
  22. { 0x01, KEY_2 },
  23. { 0x06, KEY_3 },
  24. { 0x09, KEY_4 },
  25. { 0x1d, KEY_5 },
  26. { 0x1f, KEY_6 },
  27. { 0x0d, KEY_7 },
  28. { 0x19, KEY_8 },
  29. { 0x1b, KEY_9 },
  30. { 0x0c, KEY_CANCEL },
  31. { 0x15, KEY_0 },
  32. { 0x4a, KEY_CLEAR },
  33. { 0x13, KEY_BACK },
  34. { 0x00, KEY_TAB },
  35. { 0x4b, KEY_UP },
  36. { 0x4e, KEY_LEFT },
  37. { 0x4f, KEY_OK },
  38. { 0x52, KEY_RIGHT },
  39. { 0x51, KEY_DOWN },
  40. { 0x1e, KEY_VOLUMEUP },
  41. { 0x0a, KEY_VOLUMEDOWN },
  42. { 0x02, KEY_CHANNELDOWN },
  43. { 0x05, KEY_CHANNELUP },
  44. { 0x11, KEY_RECORD },
  45. { 0x14, KEY_PLAY },
  46. { 0x4c, KEY_PAUSE },
  47. { 0x1a, KEY_STOP },
  48. { 0x40, KEY_REWIND },
  49. { 0x12, KEY_FASTFORWARD },
  50. { 0x41, KEY_PREVIOUSSONG }, /* replay |< */
  51. { 0x42, KEY_NEXTSONG }, /* skip >| */
  52. { 0x54, KEY_CAMERA }, /* capture */
  53. { 0x50, KEY_LANGUAGE }, /* sap */
  54. { 0x47, KEY_TV2 }, /* pip */
  55. { 0x4d, KEY_SCREEN },
  56. { 0x43, KEY_SUBTITLE },
  57. { 0x10, KEY_MUTE },
  58. { 0x49, KEY_AUDIO }, /* l/r */
  59. { 0x07, KEY_SLEEP },
  60. { 0x08, KEY_VIDEO }, /* a/v */
  61. { 0x0e, KEY_PREVIOUS }, /* recall */
  62. { 0x45, KEY_ZOOM }, /* zoom + */
  63. { 0x46, KEY_ANGLE }, /* zoom - */
  64. { 0x56, KEY_RED },
  65. { 0x57, KEY_GREEN },
  66. { 0x5c, KEY_YELLOW },
  67. { 0x5d, KEY_BLUE },
  68. };
  69. static struct rc_map_list dntv_live_dvbt_pro_map = {
  70. .map = {
  71. .scan = dntv_live_dvbt_pro,
  72. .size = ARRAY_SIZE(dntv_live_dvbt_pro),
  73. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  74. .name = RC_MAP_DNTV_LIVE_DVBT_PRO,
  75. }
  76. };
  77. static int __init init_rc_map_dntv_live_dvbt_pro(void)
  78. {
  79. return rc_map_register(&dntv_live_dvbt_pro_map);
  80. }
  81. static void __exit exit_rc_map_dntv_live_dvbt_pro(void)
  82. {
  83. rc_map_unregister(&dntv_live_dvbt_pro_map);
  84. }
  85. module_init(init_rc_map_dntv_live_dvbt_pro)
  86. module_exit(exit_rc_map_dntv_live_dvbt_pro)
  87. MODULE_LICENSE("GPL");
  88. MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");