GNU Linux-libre 4.19.207-gnu1
[releases.git] / drivers / media / usb / au0828 / au0828-input.c
1 // SPDX-License-Identifier: GPL-2.0+
2 // handle au0828 IR remotes via linux kernel input layer.
3 //
4 // Copyright (c) 2014 Mauro Carvalho Chehab <mchehab@samsung.com>
5 // Copyright (c) 2014 Samsung Electronics Co., Ltd.
6 //
7 // Based on em28xx-input.c.
8
9 #include "au0828.h"
10
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/delay.h>
14 #include <linux/interrupt.h>
15 #include <linux/usb.h>
16 #include <linux/slab.h>
17 #include <media/rc-core.h>
18
19 static int disable_ir;
20 module_param(disable_ir,        int, 0444);
21 MODULE_PARM_DESC(disable_ir, "disable infrared remote support");
22
23 struct au0828_rc {
24         struct au0828_dev *dev;
25         struct rc_dev *rc;
26         char name[32];
27         char phys[32];
28
29         /* poll decoder */
30         int polling;
31         struct delayed_work work;
32
33         /* i2c slave address of external device (if used) */
34         u16 i2c_dev_addr;
35
36         int  (*get_key_i2c)(struct au0828_rc *ir);
37 };
38
39 /*
40  * AU8522 has a builtin IR receiver. Add functions to get IR from it
41  */
42
43 static int au8522_rc_write(struct au0828_rc *ir, u16 reg, u8 data)
44 {
45         int rc;
46         char buf[] = { (reg >> 8) | 0x80, reg & 0xff, data };
47         struct i2c_msg msg = { .addr = ir->i2c_dev_addr, .flags = 0,
48                                .buf = buf, .len = sizeof(buf) };
49
50         rc = i2c_transfer(ir->dev->i2c_client.adapter, &msg, 1);
51
52         if (rc < 0)
53                 return rc;
54
55         return (rc == 1) ? 0 : -EIO;
56 }
57
58 static int au8522_rc_read(struct au0828_rc *ir, u16 reg, int val,
59                                  char *buf, int size)
60 {
61         int rc;
62         char obuf[3];
63         struct i2c_msg msg[2] = { { .addr = ir->i2c_dev_addr, .flags = 0,
64                                     .buf = obuf, .len = 2 },
65                                   { .addr = ir->i2c_dev_addr, .flags = I2C_M_RD,
66                                     .buf = buf, .len = size } };
67
68         obuf[0] = 0x40 | reg >> 8;
69         obuf[1] = reg & 0xff;
70         if (val >= 0) {
71                 obuf[2] = val;
72                 msg[0].len++;
73         }
74
75         rc = i2c_transfer(ir->dev->i2c_client.adapter, msg, 2);
76
77         if (rc < 0)
78                 return rc;
79
80         return (rc == 2) ? 0 : -EIO;
81 }
82
83 static int au8522_rc_andor(struct au0828_rc *ir, u16 reg, u8 mask, u8 value)
84 {
85         int rc;
86         char buf, oldbuf;
87
88         rc = au8522_rc_read(ir, reg, -1, &buf, 1);
89         if (rc < 0)
90                 return rc;
91
92         oldbuf = buf;
93         buf = (buf & ~mask) | (value & mask);
94
95         /* Nothing to do, just return */
96         if (buf == oldbuf)
97                 return 0;
98
99         return au8522_rc_write(ir, reg, buf);
100 }
101
102 #define au8522_rc_set(ir, reg, bit) au8522_rc_andor(ir, (reg), (bit), (bit))
103 #define au8522_rc_clear(ir, reg, bit) au8522_rc_andor(ir, (reg), (bit), 0)
104
105 /* Remote Controller time units */
106
107 #define AU8522_UNIT             200000 /* ns */
108 #define NEC_START_SPACE         (4500000 / AU8522_UNIT)
109 #define NEC_START_PULSE         (562500 * 16)
110 #define RC5_START_SPACE         (4 * AU8522_UNIT)
111 #define RC5_START_PULSE         888888
112
113 static int au0828_get_key_au8522(struct au0828_rc *ir)
114 {
115         unsigned char buf[40];
116         DEFINE_IR_RAW_EVENT(rawir);
117         int i, j, rc;
118         int prv_bit, bit, width;
119         bool first = true;
120
121         /* do nothing if device is disconnected */
122         if (test_bit(DEV_DISCONNECTED, &ir->dev->dev_state))
123                 return 0;
124
125         /* Check IR int */
126         rc = au8522_rc_read(ir, 0xe1, -1, buf, 1);
127         if (rc < 0 || !(buf[0] & (1 << 4))) {
128                 /* Be sure that IR is enabled */
129                 au8522_rc_set(ir, 0xe0, 1 << 4);
130                 return 0;
131         }
132
133         /* Something arrived. Get the data */
134         rc = au8522_rc_read(ir, 0xe3, 0x11, buf, sizeof(buf));
135
136
137         if (rc < 0)
138                 return rc;
139
140         /* Disable IR */
141         au8522_rc_clear(ir, 0xe0, 1 << 4);
142
143         /* Enable IR */
144         au8522_rc_set(ir, 0xe0, 1 << 4);
145
146         dprintk(16, "RC data received: %*ph\n", 40, buf);
147
148         prv_bit = (buf[0] >> 7) & 0x01;
149         width = 0;
150         for (i = 0; i < sizeof(buf); i++) {
151                 for (j = 7; j >= 0; j--) {
152                         bit = (buf[i] >> j) & 0x01;
153                         if (bit == prv_bit) {
154                                 width++;
155                                 continue;
156                         }
157
158                         /*
159                          * Fix an au8522 bug: the first pulse event
160                          * is lost. So, we need to fake it, based on the
161                          * protocol. That means that not all raw decoders
162                          * will work, as we need to add a hack for each
163                          * protocol, based on the first space.
164                          * So, we only support RC5 and NEC.
165                          */
166
167                         if (first) {
168                                 first = false;
169
170                                 init_ir_raw_event(&rawir);
171                                 rawir.pulse = true;
172                                 if (width > NEC_START_SPACE - 2 &&
173                                     width < NEC_START_SPACE + 2) {
174                                         /* NEC protocol */
175                                         rawir.duration = NEC_START_PULSE;
176                                         dprintk(16, "Storing NEC start %s with duration %d",
177                                                 rawir.pulse ? "pulse" : "space",
178                                                 rawir.duration);
179                                 } else {
180                                         /* RC5 protocol */
181                                         rawir.duration = RC5_START_PULSE;
182                                         dprintk(16, "Storing RC5 start %s with duration %d",
183                                                 rawir.pulse ? "pulse" : "space",
184                                                 rawir.duration);
185                                 }
186                                 ir_raw_event_store(ir->rc, &rawir);
187                         }
188
189                         init_ir_raw_event(&rawir);
190                         rawir.pulse = prv_bit ? false : true;
191                         rawir.duration = AU8522_UNIT * width;
192                         dprintk(16, "Storing %s with duration %d",
193                                 rawir.pulse ? "pulse" : "space",
194                                 rawir.duration);
195                         ir_raw_event_store(ir->rc, &rawir);
196
197                         width = 1;
198                         prv_bit = bit;
199                 }
200         }
201
202         init_ir_raw_event(&rawir);
203         rawir.pulse = prv_bit ? false : true;
204         rawir.duration = AU8522_UNIT * width;
205         dprintk(16, "Storing end %s with duration %d",
206                 rawir.pulse ? "pulse" : "space",
207                 rawir.duration);
208         ir_raw_event_store(ir->rc, &rawir);
209
210         ir_raw_event_handle(ir->rc);
211
212         return 1;
213 }
214
215 /*
216  * Generic IR code
217  */
218
219 static void au0828_rc_work(struct work_struct *work)
220 {
221         struct au0828_rc *ir = container_of(work, struct au0828_rc, work.work);
222         int rc;
223
224         rc = ir->get_key_i2c(ir);
225         if (rc < 0)
226                 pr_info("Error while getting RC scancode\n");
227
228         schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
229 }
230
231 static int au0828_rc_start(struct rc_dev *rc)
232 {
233         struct au0828_rc *ir = rc->priv;
234
235         INIT_DELAYED_WORK(&ir->work, au0828_rc_work);
236
237         /* Enable IR */
238         au8522_rc_set(ir, 0xe0, 1 << 4);
239
240         schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
241
242         return 0;
243 }
244
245 static void au0828_rc_stop(struct rc_dev *rc)
246 {
247         struct au0828_rc *ir = rc->priv;
248
249         cancel_delayed_work_sync(&ir->work);
250
251         /* do nothing if device is disconnected */
252         if (!test_bit(DEV_DISCONNECTED, &ir->dev->dev_state)) {
253                 /* Disable IR */
254                 au8522_rc_clear(ir, 0xe0, 1 << 4);
255         }
256 }
257
258 static int au0828_probe_i2c_ir(struct au0828_dev *dev)
259 {
260         int i = 0;
261         static const unsigned short addr_list[] = {
262                  0x47, I2C_CLIENT_END
263         };
264
265         while (addr_list[i] != I2C_CLIENT_END) {
266                 if (i2c_probe_func_quick_read(dev->i2c_client.adapter,
267                                               addr_list[i]) == 1)
268                         return addr_list[i];
269                 i++;
270         }
271
272         return -ENODEV;
273 }
274
275 int au0828_rc_register(struct au0828_dev *dev)
276 {
277         struct au0828_rc *ir;
278         struct rc_dev *rc;
279         int err = -ENOMEM;
280         u16 i2c_rc_dev_addr = 0;
281
282         if (!dev->board.has_ir_i2c || disable_ir)
283                 return 0;
284
285         i2c_rc_dev_addr = au0828_probe_i2c_ir(dev);
286         if (!i2c_rc_dev_addr)
287                 return -ENODEV;
288
289         ir = kzalloc(sizeof(*ir), GFP_KERNEL);
290         rc = rc_allocate_device(RC_DRIVER_IR_RAW);
291         if (!ir || !rc)
292                 goto error;
293
294         /* record handles to ourself */
295         ir->dev = dev;
296         dev->ir = ir;
297         ir->rc = rc;
298
299         rc->priv = ir;
300         rc->open = au0828_rc_start;
301         rc->close = au0828_rc_stop;
302
303         if (dev->board.has_ir_i2c) {    /* external i2c device */
304                 switch (dev->boardnr) {
305                 case AU0828_BOARD_HAUPPAUGE_HVR950Q:
306                         rc->map_name = RC_MAP_HAUPPAUGE;
307                         ir->get_key_i2c = au0828_get_key_au8522;
308                         break;
309                 default:
310                         err = -ENODEV;
311                         goto error;
312                 }
313
314                 ir->i2c_dev_addr = i2c_rc_dev_addr;
315         }
316
317         /* This is how often we ask the chip for IR information */
318         ir->polling = 100; /* ms */
319
320         /* init input device */
321         snprintf(ir->name, sizeof(ir->name), "au0828 IR (%s)",
322                  dev->board.name);
323
324         usb_make_path(dev->usbdev, ir->phys, sizeof(ir->phys));
325         strlcat(ir->phys, "/input0", sizeof(ir->phys));
326
327         rc->device_name = ir->name;
328         rc->input_phys = ir->phys;
329         rc->input_id.bustype = BUS_USB;
330         rc->input_id.version = 1;
331         rc->input_id.vendor = le16_to_cpu(dev->usbdev->descriptor.idVendor);
332         rc->input_id.product = le16_to_cpu(dev->usbdev->descriptor.idProduct);
333         rc->dev.parent = &dev->usbdev->dev;
334         rc->driver_name = "au0828-input";
335         rc->allowed_protocols = RC_PROTO_BIT_NEC | RC_PROTO_BIT_NECX |
336                                 RC_PROTO_BIT_NEC32 | RC_PROTO_BIT_RC5;
337
338         /* all done */
339         err = rc_register_device(rc);
340         if (err)
341                 goto error;
342
343         pr_info("Remote controller %s initialized\n", ir->name);
344
345         return 0;
346
347 error:
348         dev->ir = NULL;
349         rc_free_device(rc);
350         kfree(ir);
351         return err;
352 }
353
354 void au0828_rc_unregister(struct au0828_dev *dev)
355 {
356         struct au0828_rc *ir = dev->ir;
357
358         /* skip detach on non attached boards */
359         if (!ir)
360                 return;
361
362         rc_unregister_device(ir->rc);
363
364         /* done */
365         kfree(ir);
366         dev->ir = NULL;
367 }
368
369 int au0828_rc_suspend(struct au0828_dev *dev)
370 {
371         struct au0828_rc *ir = dev->ir;
372
373         if (!ir)
374                 return 0;
375
376         pr_info("Stopping RC\n");
377
378         cancel_delayed_work_sync(&ir->work);
379
380         /* Disable IR */
381         au8522_rc_clear(ir, 0xe0, 1 << 4);
382
383         return 0;
384 }
385
386 int au0828_rc_resume(struct au0828_dev *dev)
387 {
388         struct au0828_rc *ir = dev->ir;
389
390         if (!ir)
391                 return 0;
392
393         pr_info("Restarting RC\n");
394
395         /* Enable IR */
396         au8522_rc_set(ir, 0xe0, 1 << 4);
397
398         schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
399
400         return 0;
401 }