rc-asus-pc39.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /* asus-pc39.h - Keytable for asus_pc39 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. /*
  14. * Marc Fargas <telenieko@telenieko.com>
  15. * this is the remote control that comes with the asus p7131
  16. * which has a label saying is "Model PC-39"
  17. */
  18. static struct ir_scancode asus_pc39[] = {
  19. /* Keys 0 to 9 */
  20. { 0x15, KEY_0 },
  21. { 0x29, KEY_1 },
  22. { 0x2d, KEY_2 },
  23. { 0x2b, KEY_3 },
  24. { 0x09, KEY_4 },
  25. { 0x0d, KEY_5 },
  26. { 0x0b, KEY_6 },
  27. { 0x31, KEY_7 },
  28. { 0x35, KEY_8 },
  29. { 0x33, KEY_9 },
  30. { 0x3e, KEY_RADIO }, /* radio */
  31. { 0x03, KEY_MENU }, /* dvd/menu */
  32. { 0x2a, KEY_VOLUMEUP },
  33. { 0x19, KEY_VOLUMEDOWN },
  34. { 0x37, KEY_UP },
  35. { 0x3b, KEY_DOWN },
  36. { 0x27, KEY_LEFT },
  37. { 0x2f, KEY_RIGHT },
  38. { 0x25, KEY_VIDEO }, /* video */
  39. { 0x39, KEY_AUDIO }, /* music */
  40. { 0x21, KEY_TV }, /* tv */
  41. { 0x1d, KEY_EXIT }, /* back */
  42. { 0x0a, KEY_CHANNELUP }, /* channel / program + */
  43. { 0x1b, KEY_CHANNELDOWN }, /* channel / program - */
  44. { 0x1a, KEY_ENTER }, /* enter */
  45. { 0x06, KEY_PAUSE }, /* play/pause */
  46. { 0x1e, KEY_PREVIOUS }, /* rew */
  47. { 0x26, KEY_NEXT }, /* forward */
  48. { 0x0e, KEY_REWIND }, /* backward << */
  49. { 0x3a, KEY_FASTFORWARD }, /* forward >> */
  50. { 0x36, KEY_STOP },
  51. { 0x2e, KEY_RECORD }, /* recording */
  52. { 0x16, KEY_POWER }, /* the button that reads "close" */
  53. { 0x11, KEY_ZOOM }, /* full screen */
  54. { 0x13, KEY_MACRO }, /* recall */
  55. { 0x23, KEY_HOME }, /* home */
  56. { 0x05, KEY_PVR }, /* picture */
  57. { 0x3d, KEY_MUTE }, /* mute */
  58. { 0x01, KEY_DVD }, /* dvd */
  59. };
  60. static struct rc_keymap asus_pc39_map = {
  61. .map = {
  62. .scan = asus_pc39,
  63. .size = ARRAY_SIZE(asus_pc39),
  64. .ir_type = IR_TYPE_UNKNOWN, /* Legacy IR type */
  65. .name = RC_MAP_ASUS_PC39,
  66. }
  67. };
  68. static int __init init_rc_map_asus_pc39(void)
  69. {
  70. return ir_register_map(&asus_pc39_map);
  71. }
  72. static void __exit exit_rc_map_asus_pc39(void)
  73. {
  74. ir_unregister_map(&asus_pc39_map);
  75. }
  76. module_init(init_rc_map_asus_pc39)
  77. module_exit(exit_rc_map_asus_pc39)
  78. MODULE_LICENSE("GPL");
  79. MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");