em28xx-input.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. *
  3. * handle saa7134 IR remotes via linux kernel input layer.
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. */
  20. #include <linux/module.h>
  21. #include <linux/moduleparam.h>
  22. #include <linux/init.h>
  23. #include <linux/delay.h>
  24. #include <linux/sched.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/input.h>
  27. #include <linux/usb.h>
  28. #include "em2820.h"
  29. static unsigned int disable_ir = 0;
  30. module_param(disable_ir, int, 0444);
  31. MODULE_PARM_DESC(disable_ir,"disable infrared remote support");
  32. static unsigned int ir_debug = 0;
  33. module_param(ir_debug, int, 0644);
  34. MODULE_PARM_DESC(ir_debug,"enable debug messages [IR]");
  35. #define dprintk(fmt, arg...) if (ir_debug) \
  36. printk(KERN_DEBUG "%s/ir: " fmt, ir->c.name , ## arg)
  37. /* ---------------------------------------------------------------------- */
  38. static IR_KEYTAB_TYPE ir_codes_em_pinnacle[IR_KEYTAB_SIZE] = {
  39. [ 0 ] = KEY_CHANNEL,
  40. [ 1 ] = KEY_SELECT,
  41. [ 2 ] = KEY_MUTE,
  42. [ 3 ] = KEY_POWER,
  43. [ 4 ] = KEY_KP1,
  44. [ 5 ] = KEY_KP2,
  45. [ 6 ] = KEY_KP3,
  46. [ 7 ] = KEY_CHANNELUP,
  47. [ 8 ] = KEY_KP4,
  48. [ 9 ] = KEY_KP5,
  49. [ 10 ] = KEY_KP6,
  50. [ 11 ] = KEY_CHANNELDOWN,
  51. [ 12 ] = KEY_KP7,
  52. [ 13 ] = KEY_KP8,
  53. [ 14 ] = KEY_KP9,
  54. [ 15 ] = KEY_VOLUMEUP,
  55. [ 16 ] = KEY_KP0,
  56. [ 17 ] = KEY_MENU,
  57. [ 18 ] = KEY_PRINT,
  58. [ 19 ] = KEY_VOLUMEDOWN,
  59. [ 21 ] = KEY_PAUSE,
  60. [ 23 ] = KEY_RECORD,
  61. [ 24 ] = KEY_REWIND,
  62. [ 25 ] = KEY_PLAY,
  63. [ 27 ] = KEY_BACKSPACE,
  64. [ 29 ] = KEY_STOP,
  65. [ 31 ] = KEY_ZOOM,
  66. };
  67. /* ----------------------------------------------------------------------- */
  68. static int get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
  69. {
  70. unsigned char buf[2];
  71. unsigned char code;
  72. /* poll IR chip */
  73. if (2 != i2c_master_recv(&ir->c,buf,2))
  74. return -EIO;
  75. /* Does eliminate repeated parity code */
  76. if (buf[1]==0xff)
  77. return 0;
  78. /* avoid fast reapeating */
  79. if (buf[1]==ir->old)
  80. return 0;
  81. ir->old=buf[1];
  82. /* Rearranges bits to the right order */
  83. code= ((buf[0]&0x01)<<5) | /* 0010 0000 */
  84. ((buf[0]&0x02)<<3) | /* 0001 0000 */
  85. ((buf[0]&0x04)<<1) | /* 0000 1000 */
  86. ((buf[0]&0x08)>>1) | /* 0000 0100 */
  87. ((buf[0]&0x10)>>3) | /* 0000 0010 */
  88. ((buf[0]&0x20)>>5); /* 0000 0001 */
  89. dprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x)\n",code,buf[0]);
  90. /* return key */
  91. *ir_key = code;
  92. *ir_raw = code;
  93. return 1;
  94. }
  95. /* ----------------------------------------------------------------------- */
  96. void em2820_set_ir(struct em2820 * dev,struct IR_i2c *ir)
  97. {
  98. if (disable_ir)
  99. return ;
  100. /* detect & configure */
  101. switch (dev->model) {
  102. case (EM2800_BOARD_UNKNOWN):
  103. break;
  104. case (EM2820_BOARD_UNKNOWN):
  105. break;
  106. case (EM2820_BOARD_TERRATEC_CINERGY_250):
  107. break;
  108. case (EM2820_BOARD_PINNACLE_USB_2):
  109. ir->ir_codes = ir_codes_em_pinnacle;
  110. break;
  111. case (EM2820_BOARD_HAUPPAUGE_WINTV_USB_2):
  112. ir->ir_codes = ir_codes_hauppauge_new;
  113. ir->get_key = get_key_em_haup;
  114. snprintf(ir->c.name, sizeof(ir->c.name), "i2c IR (EM2840 Hauppage)");
  115. break;
  116. case (EM2820_BOARD_MSI_VOX_USB_2):
  117. break;
  118. case (EM2800_BOARD_TERRATEC_CINERGY_200):
  119. break;
  120. case (EM2800_BOARD_LEADTEK_WINFAST_USBII):
  121. break;
  122. case (EM2800_BOARD_KWORLD_USB2800):
  123. break;
  124. }
  125. }
  126. /* ----------------------------------------------------------------------
  127. * Local variables:
  128. * c-basic-offset: 8
  129. * End:
  130. */