hid-picolcd_cir.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /***************************************************************************
  2. * Copyright (C) 2010-2012 by Bruno Prémont <bonbons@linux-vserver.org> *
  3. * *
  4. * Based on Logitech G13 driver (v0.4) *
  5. * Copyright (C) 2009 by Rick L. Vinyard, Jr. <rvinyard@cs.nmsu.edu> *
  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, version 2 of the License. *
  10. * *
  11. * This driver is distributed in the hope that it will be useful, but *
  12. * WITHOUT ANY WARRANTY; without even the implied warranty of *
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
  14. * General Public License for more details. *
  15. * *
  16. * You should have received a copy of the GNU General Public License *
  17. * along with this software. If not see <http://www.gnu.org/licenses/>. *
  18. ***************************************************************************/
  19. #include <linux/hid.h>
  20. #include <linux/hid-debug.h>
  21. #include <linux/input.h>
  22. #include "hid-ids.h"
  23. #include <linux/fb.h>
  24. #include <linux/vmalloc.h>
  25. #include <linux/backlight.h>
  26. #include <linux/lcd.h>
  27. #include <linux/leds.h>
  28. #include <linux/seq_file.h>
  29. #include <linux/debugfs.h>
  30. #include <linux/completion.h>
  31. #include <linux/uaccess.h>
  32. #include <linux/module.h>
  33. #include <media/rc-core.h>
  34. #include "hid-picolcd.h"
  35. int picolcd_raw_cir(struct picolcd_data *data,
  36. struct hid_report *report, u8 *raw_data, int size)
  37. {
  38. unsigned long flags;
  39. int i, w, sz;
  40. DEFINE_IR_RAW_EVENT(rawir);
  41. /* ignore if rc_dev is NULL or status is shunned */
  42. spin_lock_irqsave(&data->lock, flags);
  43. if (!data->rc_dev || (data->status & PICOLCD_CIR_SHUN)) {
  44. spin_unlock_irqrestore(&data->lock, flags);
  45. return 1;
  46. }
  47. spin_unlock_irqrestore(&data->lock, flags);
  48. /* PicoLCD USB packets contain 16-bit intervals in network order,
  49. * with value negated for pulse. Intervals are in microseconds.
  50. *
  51. * Note: some userspace LIRC code for PicoLCD says negated values
  52. * for space - is it a matter of IR chip? (pulse for my TSOP2236)
  53. *
  54. * In addition, the first interval seems to be around 15000 + base
  55. * interval for non-first report of IR data - thus the quirk below
  56. * to get RC_CODE to understand Sony and JVC remotes I have at hand
  57. */
  58. sz = size > 0 ? min((int)raw_data[0], size-1) : 0;
  59. for (i = 0; i+1 < sz; i += 2) {
  60. init_ir_raw_event(&rawir);
  61. w = (raw_data[i] << 8) | (raw_data[i+1]);
  62. rawir.pulse = !!(w & 0x8000);
  63. rawir.duration = US_TO_NS(rawir.pulse ? (65536 - w) : w);
  64. /* Quirk!! - see above */
  65. if (i == 0 && rawir.duration > 15000000)
  66. rawir.duration -= 15000000;
  67. ir_raw_event_store(data->rc_dev, &rawir);
  68. }
  69. ir_raw_event_handle(data->rc_dev);
  70. return 1;
  71. }
  72. static int picolcd_cir_open(struct rc_dev *dev)
  73. {
  74. struct picolcd_data *data = dev->priv;
  75. unsigned long flags;
  76. spin_lock_irqsave(&data->lock, flags);
  77. data->status &= ~PICOLCD_CIR_SHUN;
  78. spin_unlock_irqrestore(&data->lock, flags);
  79. return 0;
  80. }
  81. static void picolcd_cir_close(struct rc_dev *dev)
  82. {
  83. struct picolcd_data *data = dev->priv;
  84. unsigned long flags;
  85. spin_lock_irqsave(&data->lock, flags);
  86. data->status |= PICOLCD_CIR_SHUN;
  87. spin_unlock_irqrestore(&data->lock, flags);
  88. }
  89. /* initialize CIR input device */
  90. int picolcd_init_cir(struct picolcd_data *data, struct hid_report *report)
  91. {
  92. struct rc_dev *rdev;
  93. int ret = 0;
  94. rdev = rc_allocate_device();
  95. if (!rdev)
  96. return -ENOMEM;
  97. rdev->priv = data;
  98. rdev->driver_type = RC_DRIVER_IR_RAW;
  99. rdev->allowed_protocols = RC_BIT_ALL;
  100. rdev->open = picolcd_cir_open;
  101. rdev->close = picolcd_cir_close;
  102. rdev->input_name = data->hdev->name;
  103. rdev->input_phys = data->hdev->phys;
  104. rdev->input_id.bustype = data->hdev->bus;
  105. rdev->input_id.vendor = data->hdev->vendor;
  106. rdev->input_id.product = data->hdev->product;
  107. rdev->input_id.version = data->hdev->version;
  108. rdev->dev.parent = &data->hdev->dev;
  109. rdev->driver_name = PICOLCD_NAME;
  110. rdev->map_name = RC_MAP_RC6_MCE;
  111. rdev->timeout = MS_TO_NS(100);
  112. rdev->rx_resolution = US_TO_NS(1);
  113. ret = rc_register_device(rdev);
  114. if (ret)
  115. goto err;
  116. data->rc_dev = rdev;
  117. return 0;
  118. err:
  119. rc_free_device(rdev);
  120. return ret;
  121. }
  122. void picolcd_exit_cir(struct picolcd_data *data)
  123. {
  124. struct rc_dev *rdev = data->rc_dev;
  125. data->rc_dev = NULL;
  126. rc_unregister_device(rdev);
  127. }