blob: 34da38d5b0cdcc00971f7d3a88bf3f6c3619c20e [file] [log] [blame]
Thomas Gleixner24c9d962019-05-29 07:12:39 -07001// SPDX-License-Identifier: GPL-2.0-only
Bruno Prémontfabdbf22012-07-30 21:38:28 +02002/***************************************************************************
3 * Copyright (C) 2010-2012 by Bruno Prémont <bonbons@linux-vserver.org> *
4 * *
5 * Based on Logitech G13 driver (v0.4) *
6 * Copyright (C) 2009 by Rick L. Vinyard, Jr. <rvinyard@cs.nmsu.edu> *
7 * *
Bruno Prémontfabdbf22012-07-30 21:38:28 +02008 ***************************************************************************/
9
10#include <linux/hid.h>
11#include <linux/hid-debug.h>
12#include <linux/input.h>
13#include "hid-ids.h"
Bruno Prémontfabdbf22012-07-30 21:38:28 +020014
15#include <linux/fb.h>
16#include <linux/vmalloc.h>
17#include <linux/backlight.h>
18#include <linux/lcd.h>
19
20#include <linux/leds.h>
21
22#include <linux/seq_file.h>
23#include <linux/debugfs.h>
24
25#include <linux/completion.h>
26#include <linux/uaccess.h>
27#include <linux/module.h>
Bruno Prémontae08e322012-08-19 19:32:54 +020028#include <media/rc-core.h>
Bruno Prémontfabdbf22012-07-30 21:38:28 +020029
30#include "hid-picolcd.h"
31
32
33int picolcd_raw_cir(struct picolcd_data *data,
34 struct hid_report *report, u8 *raw_data, int size)
35{
Bruno Prémontae08e322012-08-19 19:32:54 +020036 unsigned long flags;
37 int i, w, sz;
Sean Young183e19f2018-08-21 15:57:52 -040038 struct ir_raw_event rawir = {};
Bruno Prémontae08e322012-08-19 19:32:54 +020039
40 /* ignore if rc_dev is NULL or status is shunned */
41 spin_lock_irqsave(&data->lock, flags);
Dan Carpenter02d9be12012-09-07 09:47:41 +030042 if (!data->rc_dev || (data->status & PICOLCD_CIR_SHUN)) {
Bruno Prémontae08e322012-08-19 19:32:54 +020043 spin_unlock_irqrestore(&data->lock, flags);
44 return 1;
45 }
46 spin_unlock_irqrestore(&data->lock, flags);
47
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) {
Bruno Prémontae08e322012-08-19 19:32:54 +020060 w = (raw_data[i] << 8) | (raw_data[i+1]);
61 rawir.pulse = !!(w & 0x8000);
62 rawir.duration = US_TO_NS(rawir.pulse ? (65536 - w) : w);
63 /* Quirk!! - see above */
64 if (i == 0 && rawir.duration > 15000000)
65 rawir.duration -= 15000000;
66 ir_raw_event_store(data->rc_dev, &rawir);
67 }
68 ir_raw_event_handle(data->rc_dev);
69
Bruno Prémontfabdbf22012-07-30 21:38:28 +020070 return 1;
71}
72
Bruno Prémontae08e322012-08-19 19:32:54 +020073static int picolcd_cir_open(struct rc_dev *dev)
74{
75 struct picolcd_data *data = dev->priv;
76 unsigned long flags;
77
78 spin_lock_irqsave(&data->lock, flags);
79 data->status &= ~PICOLCD_CIR_SHUN;
80 spin_unlock_irqrestore(&data->lock, flags);
81 return 0;
82}
83
84static void picolcd_cir_close(struct rc_dev *dev)
85{
86 struct picolcd_data *data = dev->priv;
87 unsigned long flags;
88
89 spin_lock_irqsave(&data->lock, flags);
90 data->status |= PICOLCD_CIR_SHUN;
91 spin_unlock_irqrestore(&data->lock, flags);
92}
93
Bruno Prémontfabdbf22012-07-30 21:38:28 +020094/* initialize CIR input device */
95int picolcd_init_cir(struct picolcd_data *data, struct hid_report *report)
96{
Bruno Prémontae08e322012-08-19 19:32:54 +020097 struct rc_dev *rdev;
98 int ret = 0;
99
Andi Shyti0f7499f2016-12-16 06:50:58 -0200100 rdev = rc_allocate_device(RC_DRIVER_IR_RAW);
Bruno Prémontae08e322012-08-19 19:32:54 +0200101 if (!rdev)
102 return -ENOMEM;
103
104 rdev->priv = data;
Sean Young6d741bf2017-08-07 16:20:58 -0400105 rdev->allowed_protocols = RC_PROTO_BIT_ALL_IR_DECODER;
Bruno Prémontae08e322012-08-19 19:32:54 +0200106 rdev->open = picolcd_cir_open;
107 rdev->close = picolcd_cir_close;
Sean Young518f4b22017-07-01 12:13:19 -0400108 rdev->device_name = data->hdev->name;
Bruno Prémontae08e322012-08-19 19:32:54 +0200109 rdev->input_phys = data->hdev->phys;
110 rdev->input_id.bustype = data->hdev->bus;
111 rdev->input_id.vendor = data->hdev->vendor;
112 rdev->input_id.product = data->hdev->product;
113 rdev->input_id.version = data->hdev->version;
114 rdev->dev.parent = &data->hdev->dev;
115 rdev->driver_name = PICOLCD_NAME;
116 rdev->map_name = RC_MAP_RC6_MCE;
117 rdev->timeout = MS_TO_NS(100);
118 rdev->rx_resolution = US_TO_NS(1);
119
120 ret = rc_register_device(rdev);
121 if (ret)
122 goto err;
123 data->rc_dev = rdev;
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200124 return 0;
Bruno Prémontae08e322012-08-19 19:32:54 +0200125
126err:
127 rc_free_device(rdev);
128 return ret;
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200129}
130
131void picolcd_exit_cir(struct picolcd_data *data)
132{
Bruno Prémontae08e322012-08-19 19:32:54 +0200133 struct rc_dev *rdev = data->rc_dev;
134
135 data->rc_dev = NULL;
Markus Elfring4b8a8262014-11-19 18:30:22 +0100136 rc_unregister_device(rdev);
Bruno Prémontfabdbf22012-07-30 21:38:28 +0200137}
138