1 // SPDX-License-Identifier: GPL-2.0-only
2 /***************************************************************************
3 * Copyright (C) 2010-2012 by Bruno Prémont <bonbons@linux-vserver.org> *
5 * Based on Logitech G13 driver (v0.4) *
6 * Copyright (C) 2009 by Rick L. Vinyard, Jr. <rvinyard@cs.nmsu.edu> *
8 ***************************************************************************/
10 #include <linux/hid.h>
11 #include <linux/hid-debug.h>
12 #include <linux/input.h>
16 #include <linux/vmalloc.h>
17 #include <linux/backlight.h>
18 #include <linux/lcd.h>
20 #include <linux/leds.h>
22 #include <linux/seq_file.h>
23 #include <linux/debugfs.h>
25 #include <linux/completion.h>
26 #include <linux/uaccess.h>
27 #include <linux/module.h>
28 #include <media/rc-core.h>
30 #include "hid-picolcd.h"
33 int picolcd_raw_cir(struct picolcd_data
*data
,
34 struct hid_report
*report
, u8
*raw_data
, int size
)
38 struct ir_raw_event rawir
= {};
40 /* ignore if rc_dev is NULL or status is shunned */
41 spin_lock_irqsave(&data
->lock
, flags
);
42 if (!data
->rc_dev
|| (data
->status
& PICOLCD_CIR_SHUN
)) {
43 spin_unlock_irqrestore(&data
->lock
, flags
);
46 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.
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)
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
58 sz
= size
> 0 ? min((int)raw_data
[0], size
-1) : 0;
59 for (i
= 0; i
+1 < sz
; i
+= 2) {
60 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
);
68 ir_raw_event_handle(data
->rc_dev
);
73 static int picolcd_cir_open(struct rc_dev
*dev
)
75 struct picolcd_data
*data
= dev
->priv
;
78 spin_lock_irqsave(&data
->lock
, flags
);
79 data
->status
&= ~PICOLCD_CIR_SHUN
;
80 spin_unlock_irqrestore(&data
->lock
, flags
);
84 static void picolcd_cir_close(struct rc_dev
*dev
)
86 struct picolcd_data
*data
= dev
->priv
;
89 spin_lock_irqsave(&data
->lock
, flags
);
90 data
->status
|= PICOLCD_CIR_SHUN
;
91 spin_unlock_irqrestore(&data
->lock
, flags
);
94 /* initialize CIR input device */
95 int picolcd_init_cir(struct picolcd_data
*data
, struct hid_report
*report
)
100 rdev
= rc_allocate_device(RC_DRIVER_IR_RAW
);
105 rdev
->allowed_protocols
= RC_PROTO_BIT_ALL_IR_DECODER
;
106 rdev
->open
= picolcd_cir_open
;
107 rdev
->close
= picolcd_cir_close
;
108 rdev
->device_name
= data
->hdev
->name
;
109 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);
120 ret
= rc_register_device(rdev
);
127 rc_free_device(rdev
);
131 void picolcd_exit_cir(struct picolcd_data
*data
)
133 struct rc_dev
*rdev
= data
->rc_dev
;
136 rc_unregister_device(rdev
);