cx231xx-input.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * cx231xx IR glue driver
  3. *
  4. * Copyright (C) 2010 Mauro Carvalho Chehab <mchehab@redhat.com>
  5. *
  6. * Polaris (cx231xx) has its support for IR's with a design close to MCE.
  7. * however, a few designs are using an external I2C chip for IR, instead
  8. * of using the one provided by the chip.
  9. * This driver provides support for those extra devices
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU General Public License as
  13. * published by the Free Software Foundation version 2.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. */
  20. #include "cx231xx.h"
  21. #include <linux/usb.h>
  22. #include <linux/slab.h>
  23. #define MODULE_NAME "cx231xx-input"
  24. static int get_key_isdbt(struct IR_i2c *ir, u32 *ir_key,
  25. u32 *ir_raw)
  26. {
  27. u8 cmd;
  28. dev_dbg(&ir->rc->input_dev->dev, "%s\n", __func__);
  29. /* poll IR chip */
  30. if (1 != i2c_master_recv(ir->c, &cmd, 1))
  31. return -EIO;
  32. /* it seems that 0xFE indicates that a button is still hold
  33. down, while 0xff indicates that no button is hold
  34. down. 0xfe sequences are sometimes interrupted by 0xFF */
  35. if (cmd == 0xff)
  36. return 0;
  37. dev_dbg(&ir->rc->input_dev->dev, "scancode = %02x\n", cmd);
  38. *ir_key = cmd;
  39. *ir_raw = cmd;
  40. return 1;
  41. }
  42. int cx231xx_ir_init(struct cx231xx *dev)
  43. {
  44. struct i2c_board_info info;
  45. u8 ir_i2c_bus;
  46. dev_dbg(&dev->udev->dev, "%s\n", __func__);
  47. /* Only initialize if a rc keycode map is defined */
  48. if (!cx231xx_boards[dev->model].rc_map)
  49. return -ENODEV;
  50. request_module("ir-kbd-i2c");
  51. memset(&info, 0, sizeof(struct i2c_board_info));
  52. memset(&dev->init_data, 0, sizeof(dev->init_data));
  53. dev->init_data.rc_dev = rc_allocate_device();
  54. if (!dev->init_data.rc_dev)
  55. return -ENOMEM;
  56. dev->init_data.name = cx231xx_boards[dev->model].name;
  57. strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
  58. info.platform_data = &dev->init_data;
  59. /*
  60. * Board-dependent values
  61. *
  62. * For now, there's just one type of hardware design using
  63. * an i2c device.
  64. */
  65. dev->init_data.get_key = get_key_isdbt;
  66. dev->init_data.ir_codes = cx231xx_boards[dev->model].rc_map;
  67. /* The i2c micro-controller only outputs the cmd part of NEC protocol */
  68. dev->init_data.rc_dev->scanmask = 0xff;
  69. dev->init_data.rc_dev->driver_name = "cx231xx";
  70. dev->init_data.type = IR_TYPE_NEC;
  71. info.addr = 0x30;
  72. /* Load and bind ir-kbd-i2c */
  73. ir_i2c_bus = cx231xx_boards[dev->model].ir_i2c_master;
  74. dev_dbg(&dev->udev->dev, "Trying to bind ir at bus %d, addr 0x%02x\n",
  75. ir_i2c_bus, info.addr);
  76. i2c_new_device(&dev->i2c_bus[ir_i2c_bus].i2c_adap, &info);
  77. return 0;
  78. }
  79. void cx231xx_ir_exit(struct cx231xx *dev)
  80. {
  81. }