rc-ati-tv-wonder-hd-600.c 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /* ati-tv-wonder-hd-600.h - Keytable for ati_tv_wonder_hd_600 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. /* ATI TV Wonder HD 600 USB
  15. Devin Heitmueller <devin.heitmueller@gmail.com>
  16. */
  17. static struct rc_map_table ati_tv_wonder_hd_600[] = {
  18. { 0x00, KEY_RECORD}, /* Row 1 */
  19. { 0x01, KEY_PLAYPAUSE},
  20. { 0x02, KEY_STOP},
  21. { 0x03, KEY_POWER},
  22. { 0x04, KEY_PREVIOUS}, /* Row 2 */
  23. { 0x05, KEY_REWIND},
  24. { 0x06, KEY_FORWARD},
  25. { 0x07, KEY_NEXT},
  26. { 0x08, KEY_EPG}, /* Row 3 */
  27. { 0x09, KEY_HOME},
  28. { 0x0a, KEY_MENU},
  29. { 0x0b, KEY_CHANNELUP},
  30. { 0x0c, KEY_BACK}, /* Row 4 */
  31. { 0x0d, KEY_UP},
  32. { 0x0e, KEY_INFO},
  33. { 0x0f, KEY_CHANNELDOWN},
  34. { 0x10, KEY_LEFT}, /* Row 5 */
  35. { 0x11, KEY_SELECT},
  36. { 0x12, KEY_RIGHT},
  37. { 0x13, KEY_VOLUMEUP},
  38. { 0x14, KEY_LAST}, /* Row 6 */
  39. { 0x15, KEY_DOWN},
  40. { 0x16, KEY_MUTE},
  41. { 0x17, KEY_VOLUMEDOWN},
  42. };
  43. static struct rc_map_list ati_tv_wonder_hd_600_map = {
  44. .map = {
  45. .scan = ati_tv_wonder_hd_600,
  46. .size = ARRAY_SIZE(ati_tv_wonder_hd_600),
  47. .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
  48. .name = RC_MAP_ATI_TV_WONDER_HD_600,
  49. }
  50. };
  51. static int __init init_rc_map_ati_tv_wonder_hd_600(void)
  52. {
  53. return rc_map_register(&ati_tv_wonder_hd_600_map);
  54. }
  55. static void __exit exit_rc_map_ati_tv_wonder_hd_600(void)
  56. {
  57. rc_map_unregister(&ati_tv_wonder_hd_600_map);
  58. }
  59. module_init(init_rc_map_ati_tv_wonder_hd_600)
  60. module_exit(exit_rc_map_ati_tv_wonder_hd_600)
  61. MODULE_LICENSE("GPL");
  62. MODULE_AUTHOR("Mauro Carvalho Chehab");