rc-kaiomy.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* kaiomy.h - Keytable for kaiomy 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. /* Kaiomy TVnPC U2
  15. Mauro Carvalho Chehab <mchehab@infradead.org>
  16. */
  17. static struct rc_map_table kaiomy[] = {
  18. { 0x43, KEY_POWER2},
  19. { 0x01, KEY_LIST},
  20. { 0x0b, KEY_ZOOM},
  21. { 0x03, KEY_POWER},
  22. { 0x04, KEY_1},
  23. { 0x08, KEY_2},
  24. { 0x02, KEY_3},
  25. { 0x0f, KEY_4},
  26. { 0x05, KEY_5},
  27. { 0x06, KEY_6},
  28. { 0x0c, KEY_7},
  29. { 0x0d, KEY_8},
  30. { 0x0a, KEY_9},
  31. { 0x11, KEY_0},
  32. { 0x09, KEY_CHANNELUP},
  33. { 0x07, KEY_CHANNELDOWN},
  34. { 0x0e, KEY_VOLUMEUP},
  35. { 0x13, KEY_VOLUMEDOWN},
  36. { 0x10, KEY_HOME},
  37. { 0x12, KEY_ENTER},
  38. { 0x14, KEY_RECORD},
  39. { 0x15, KEY_STOP},
  40. { 0x16, KEY_PLAY},
  41. { 0x17, KEY_MUTE},
  42. { 0x18, KEY_UP},
  43. { 0x19, KEY_DOWN},
  44. { 0x1a, KEY_LEFT},
  45. { 0x1b, KEY_RIGHT},
  46. { 0x1c, KEY_RED},
  47. { 0x1d, KEY_GREEN},
  48. { 0x1e, KEY_YELLOW},
  49. { 0x1f, KEY_BLUE},
  50. };
  51. static struct rc_map_list kaiomy_map = {
  52. .map = {
  53. .scan = kaiomy,
  54. .size = ARRAY_SIZE(kaiomy),
  55. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  56. .name = RC_MAP_KAIOMY,
  57. }
  58. };
  59. static int __init init_rc_map_kaiomy(void)
  60. {
  61. return rc_map_register(&kaiomy_map);
  62. }
  63. static void __exit exit_rc_map_kaiomy(void)
  64. {
  65. rc_map_unregister(&kaiomy_map);
  66. }
  67. module_init(init_rc_map_kaiomy)
  68. module_exit(exit_rc_map_kaiomy)
  69. MODULE_LICENSE("GPL");
  70. MODULE_AUTHOR("Mauro Carvalho Chehab");