blob: 5c3fd9411b1fcc25967482ffdc5e3c0e8affb056 [file] [log] [blame]
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -08001/*
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08002 handle em28xx IR remotes via linux kernel input layer.
3
4 Copyright (C) 2005 Ludovico Cavedon <cavedon@sssup.it>
5 Markus Rechberger <mrechberger@gmail.com>
Mauro Carvalho Chehab2e7c6dc2006-04-03 07:53:40 -03006 Mauro Carvalho Chehab <mchehab@infradead.org>
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -08007 Sascha Sommer <saschasommer@freenet.de>
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080022 */
23
24#include <linux/module.h>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080025#include <linux/init.h>
26#include <linux/delay.h>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080027#include <linux/interrupt.h>
28#include <linux/input.h>
29#include <linux/usb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080031
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080032#include "em28xx.h"
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080033
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -030034#define EM28XX_SNAPSHOT_KEY KEY_CAMERA
35#define EM28XX_SBUTTON_QUERY_INTERVAL 500
36#define EM28XX_R0C_USBSUSP_SNAPSHOT 0x20
37
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030038static unsigned int ir_debug;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080039module_param(ir_debug, int, 0644);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030040MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080041
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030042#define MODULE_NAME "em28xx"
43
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030044#define i2cdprintk(fmt, arg...) \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030045 if (ir_debug) { \
Jean Delvare1df8e982009-05-13 16:48:07 -030046 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030047 }
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080048
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030049#define dprintk(fmt, arg...) \
50 if (ir_debug) { \
51 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
52 }
53
54/**********************************************************
55 Polling structure used by em28xx IR's
56 **********************************************************/
57
Devin Heitmueller4b922532008-11-13 03:15:55 -030058struct em28xx_ir_poll_result {
59 unsigned int toggle_bit:1;
60 unsigned int read_count:7;
61 u8 rc_address;
62 u8 rc_data[4]; /* 1 byte on em2860/2880, 4 on em2874 */
63};
64
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030065struct em28xx_IR {
66 struct em28xx *dev;
67 struct input_dev *input;
68 struct ir_input_state ir;
69 char name[32];
70 char phys[32];
71
72 /* poll external decoder */
73 int polling;
Jean Delvaref263bac2009-03-07 07:43:01 -030074 struct delayed_work work;
Devin Heitmueller4b922532008-11-13 03:15:55 -030075 unsigned int last_toggle:1;
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -030076 unsigned int full_code:1;
Devin Heitmueller4b922532008-11-13 03:15:55 -030077 unsigned int last_readcount;
78 unsigned int repeat_interval;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030079
Devin Heitmueller4b922532008-11-13 03:15:55 -030080 int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *);
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -030081
82 /* IR device properties */
83
84 struct ir_dev_props props;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030085};
86
87/**********************************************************
88 I2C IR based get keycodes - should be used with ir-kbd-i2c
89 **********************************************************/
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080090
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030091int em28xx_get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Markus Rechbergere43f14a2005-11-08 21:37:35 -080092{
93 unsigned char b;
94
95 /* poll IR chip */
Jean Delvarec668f322009-05-13 16:48:50 -030096 if (1 != i2c_master_recv(ir->c, &b, 1)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030097 i2cdprintk("read error\n");
Markus Rechbergere43f14a2005-11-08 21:37:35 -080098 return -EIO;
99 }
100
101 /* it seems that 0xFE indicates that a button is still hold
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800102 down, while 0xff indicates that no button is hold
103 down. 0xfe sequences are sometimes interrupted by 0xFF */
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800104
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300105 i2cdprintk("key %02x\n", b);
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800106
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800107 if (b == 0xff)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800108 return 0;
109
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800110 if (b == 0xfe)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800111 /* keep old data */
112 return 1;
113
114 *ir_key = b;
115 *ir_raw = b;
116 return 1;
117}
118
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300119int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800120{
121 unsigned char buf[2];
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300122 u16 code;
123 int size;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800124
125 /* poll IR chip */
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300126 size = i2c_master_recv(ir->c, buf, sizeof(buf));
127
128 if (size != 2)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800129 return -EIO;
130
131 /* Does eliminate repeated parity code */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300132 if (buf[1] == 0xff)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800133 return 0;
134
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300135 ir->old = buf[1];
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800136
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300137 /*
138 * Rearranges bits to the right order.
139 * The bit order were determined experimentally by using
140 * The original Hauppauge Grey IR and another RC5 that uses addr=0x08
141 * The RC5 code has 14 bits, but we've experimentally determined
142 * the meaning for only 11 bits.
143 * So, the code translation is not complete. Yet, it is enough to
144 * work with the provided RC5 IR.
145 */
146 code =
147 ((buf[0] & 0x01) ? 0x0020 : 0) | /* 0010 0000 */
148 ((buf[0] & 0x02) ? 0x0010 : 0) | /* 0001 0000 */
149 ((buf[0] & 0x04) ? 0x0008 : 0) | /* 0000 1000 */
150 ((buf[0] & 0x08) ? 0x0004 : 0) | /* 0000 0100 */
151 ((buf[0] & 0x10) ? 0x0002 : 0) | /* 0000 0010 */
152 ((buf[0] & 0x20) ? 0x0001 : 0) | /* 0000 0001 */
153 ((buf[1] & 0x08) ? 0x1000 : 0) | /* 0001 0000 */
154 ((buf[1] & 0x10) ? 0x0800 : 0) | /* 0000 1000 */
155 ((buf[1] & 0x20) ? 0x0400 : 0) | /* 0000 0100 */
156 ((buf[1] & 0x40) ? 0x0200 : 0) | /* 0000 0010 */
157 ((buf[1] & 0x80) ? 0x0100 : 0); /* 0000 0001 */
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800158
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300159 i2cdprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x%02x)\n",
160 code, buf[1], buf[0]);
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800161
162 /* return key */
163 *ir_key = code;
164 *ir_raw = code;
165 return 1;
166}
167
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300168int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
169 u32 *ir_raw)
Markus Rechberger366cc642006-01-15 21:04:27 -0200170{
171 unsigned char buf[3];
172
173 /* poll IR chip */
174
Jean Delvarec668f322009-05-13 16:48:50 -0300175 if (3 != i2c_master_recv(ir->c, buf, 3)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300176 i2cdprintk("read error\n");
Markus Rechberger366cc642006-01-15 21:04:27 -0200177 return -EIO;
178 }
179
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300180 i2cdprintk("key %02x\n", buf[2]&0x3f);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300181 if (buf[0] != 0x00)
Markus Rechberger366cc642006-01-15 21:04:27 -0200182 return 0;
Markus Rechberger366cc642006-01-15 21:04:27 -0200183
184 *ir_key = buf[2]&0x3f;
185 *ir_raw = buf[2]&0x3f;
186
187 return 1;
188}
189
Magnus Almca39d842009-11-13 05:48:24 -0300190int em28xx_get_key_winfast_usbii_deluxe(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
191{
192 unsigned char subaddr, keydetect, key;
193
194 struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0, .buf = &subaddr, .len = 1},
195
196 { .addr = ir->c->addr, .flags = I2C_M_RD, .buf = &keydetect, .len = 1} };
197
198 subaddr = 0x10;
199 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
200 i2cdprintk("read error\n");
201 return -EIO;
202 }
203 if (keydetect == 0x00)
204 return 0;
205
206 subaddr = 0x00;
207 msg[1].buf = &key;
208 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
209 i2cdprintk("read error\n");
210 return -EIO;
211 }
212 if (key == 0x00)
213 return 0;
214
215 *ir_key = key;
216 *ir_raw = key;
217 return 1;
218}
219
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300220/**********************************************************
221 Poll based get keycode functions
222 **********************************************************/
223
Devin Heitmueller4b922532008-11-13 03:15:55 -0300224/* This is for the em2860/em2880 */
225static int default_polling_getkey(struct em28xx_IR *ir,
226 struct em28xx_ir_poll_result *poll_result)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300227{
228 struct em28xx *dev = ir->dev;
229 int rc;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300230 u8 msg[3] = { 0, 0, 0 };
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300231
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300232 /* Read key toggle, brand, and key code
233 on registers 0x45, 0x46 and 0x47
234 */
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300235 rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR,
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300236 msg, sizeof(msg));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300237 if (rc < 0)
238 return rc;
239
Devin Heitmueller4b922532008-11-13 03:15:55 -0300240 /* Infrared toggle (Reg 0x45[7]) */
241 poll_result->toggle_bit = (msg[0] >> 7);
242
243 /* Infrared read count (Reg 0x45[6:0] */
244 poll_result->read_count = (msg[0] & 0x7f);
245
246 /* Remote Control Address (Reg 0x46) */
247 poll_result->rc_address = msg[1];
248
249 /* Remote Control Data (Reg 0x47) */
250 poll_result->rc_data[0] = msg[2];
251
252 return 0;
253}
254
255static int em2874_polling_getkey(struct em28xx_IR *ir,
256 struct em28xx_ir_poll_result *poll_result)
257{
258 struct em28xx *dev = ir->dev;
259 int rc;
260 u8 msg[5] = { 0, 0, 0, 0, 0 };
261
262 /* Read key toggle, brand, and key code
263 on registers 0x51-55
264 */
265 rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
266 msg, sizeof(msg));
267 if (rc < 0)
268 return rc;
269
270 /* Infrared toggle (Reg 0x51[7]) */
271 poll_result->toggle_bit = (msg[0] >> 7);
272
273 /* Infrared read count (Reg 0x51[6:0] */
274 poll_result->read_count = (msg[0] & 0x7f);
275
276 /* Remote Control Address (Reg 0x52) */
277 poll_result->rc_address = msg[1];
278
279 /* Remote Control Data (Reg 0x53-55) */
280 poll_result->rc_data[0] = msg[2];
281 poll_result->rc_data[1] = msg[3];
282 poll_result->rc_data[2] = msg[4];
283
284 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300285}
286
287/**********************************************************
288 Polling code for em28xx
289 **********************************************************/
290
291static void em28xx_ir_handle_key(struct em28xx_IR *ir)
292{
Devin Heitmueller4b922532008-11-13 03:15:55 -0300293 int result;
294 int do_sendkey = 0;
295 struct em28xx_ir_poll_result poll_result;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300296
Devin Heitmueller4b922532008-11-13 03:15:55 -0300297 /* read the registers containing the IR status */
298 result = ir->get_key(ir, &poll_result);
299 if (result < 0) {
300 dprintk("ir->get_key() failed %d\n", result);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300301 return;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300302 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300303
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300304 dprintk("ir->get_key result tb=%02x rc=%02x lr=%02x data=%02x%02x\n",
Devin Heitmueller4b922532008-11-13 03:15:55 -0300305 poll_result.toggle_bit, poll_result.read_count,
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300306 ir->last_readcount, poll_result.rc_address,
307 poll_result.rc_data[0]);
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300308
Devin Heitmueller4b922532008-11-13 03:15:55 -0300309 if (ir->dev->chip_id == CHIP_ID_EM2874) {
310 /* The em2874 clears the readcount field every time the
311 register is read. The em2860/2880 datasheet says that it
312 is supposed to clear the readcount, but it doesn't. So with
313 the em2874, we are looking for a non-zero read count as
314 opposed to a readcount that is incrementing */
315 ir->last_readcount = 0;
316 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300317
Devin Heitmueller4b922532008-11-13 03:15:55 -0300318 if (poll_result.read_count == 0) {
319 /* The button has not been pressed since the last read */
320 } else if (ir->last_toggle != poll_result.toggle_bit) {
321 /* A button has been pressed */
322 dprintk("button has been pressed\n");
323 ir->last_toggle = poll_result.toggle_bit;
324 ir->repeat_interval = 0;
325 do_sendkey = 1;
326 } else if (poll_result.toggle_bit == ir->last_toggle &&
327 poll_result.read_count > 0 &&
328 poll_result.read_count != ir->last_readcount) {
329 /* The button is still being held down */
330 dprintk("button being held down\n");
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300331
Devin Heitmueller4b922532008-11-13 03:15:55 -0300332 /* Debouncer for first keypress */
333 if (ir->repeat_interval++ > 9) {
334 /* Start repeating after 1 second */
335 do_sendkey = 1;
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300336 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300337 }
338
339 if (do_sendkey) {
340 dprintk("sending keypress\n");
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300341
342 if (ir->full_code)
343 ir_input_keydown(ir->input, &ir->ir,
344 poll_result.rc_address << 8 |
345 poll_result.rc_data[0]);
346 else
347 ir_input_keydown(ir->input, &ir->ir,
348 poll_result.rc_data[0]);
349
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300350 ir_input_nokey(ir->input, &ir->ir);
351 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300352
353 ir->last_readcount = poll_result.read_count;
354 return;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300355}
356
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300357static void em28xx_ir_work(struct work_struct *work)
358{
Jean Delvaref263bac2009-03-07 07:43:01 -0300359 struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300360
361 em28xx_ir_handle_key(ir);
Jean Delvaref263bac2009-03-07 07:43:01 -0300362 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300363}
364
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300365static int em28xx_ir_start(void *priv)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300366{
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300367 struct em28xx_IR *ir = priv;
368
Jean Delvaref263bac2009-03-07 07:43:01 -0300369 INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
370 schedule_delayed_work(&ir->work, 0);
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300371
372 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300373}
374
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300375static void em28xx_ir_stop(void *priv)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300376{
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300377 struct em28xx_IR *ir = priv;
378
Jean Delvaref263bac2009-03-07 07:43:01 -0300379 cancel_delayed_work_sync(&ir->work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300380}
381
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300382int em28xx_ir_change_protocol(void *priv, u64 ir_type)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300383{
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300384 int rc = 0;
385 struct em28xx_IR *ir = priv;
386 struct em28xx *dev = ir->dev;
387 u8 ir_config = EM2874_IR_RC5;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300388
389 /* Adjust xclk based o IR table for RC5/NEC tables */
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300390
391 if (ir_type == IR_TYPE_RC5) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300392 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
393 ir->full_code = 1;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300394 } else if (ir_type == IR_TYPE_NEC) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300395 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
396 ir_config = EM2874_IR_NEC;
397 ir->full_code = 1;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300398 } else if (ir_type != IR_TYPE_UNKNOWN)
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300399 rc = -EINVAL;
400
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300401 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
402 EM28XX_XCLK_IR_RC5_MODE);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300403
Devin Heitmueller4b922532008-11-13 03:15:55 -0300404 /* Setup the proper handler based on the chip */
405 switch (dev->chip_id) {
406 case CHIP_ID_EM2860:
407 case CHIP_ID_EM2883:
408 ir->get_key = default_polling_getkey;
Mauro Carvalho Chehab91812fa2008-11-12 14:05:46 -0300409 break;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300410 case CHIP_ID_EM2874:
411 ir->get_key = em2874_polling_getkey;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300412 em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1);
413 break;
414 default:
415 printk("Unrecognized em28xx chip id: IR not supported\n");
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300416 rc = -EINVAL;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300417 }
418
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300419 return rc;
420}
421
422int em28xx_ir_init(struct em28xx *dev)
423{
424 struct em28xx_IR *ir;
425 struct input_dev *input_dev;
426 int err = -ENOMEM;
427
428 if (dev->board.ir_codes == NULL) {
429 /* No remote control support */
430 return 0;
431 }
432
433 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
434 input_dev = input_allocate_device();
435 if (!ir || !input_dev)
436 goto err_out_free;
437
438 /* record handles to ourself */
439 ir->dev = dev;
440 dev->ir = ir;
441
442 ir->input = input_dev;
443
444 /*
445 * em2874 supports more protocols. For now, let's just announce
446 * the two protocols that were already tested
447 */
448 ir->props.allowed_protos = IR_TYPE_RC5 | IR_TYPE_NEC;
449 ir->props.priv = ir;
450 ir->props.change_protocol = em28xx_ir_change_protocol;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300451 ir->props.open = em28xx_ir_start;
452 ir->props.close = em28xx_ir_stop;
453
454 /* By default, keep protocol field untouched */
455 err = em28xx_ir_change_protocol(ir, IR_TYPE_UNKNOWN);
456 if (err)
457 goto err_out_free;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300458
Devin Heitmueller4b922532008-11-13 03:15:55 -0300459 /* This is how often we ask the chip for IR information */
460 ir->polling = 100; /* ms */
461
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300462 /* init input device */
463 snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
464 dev->name);
465
466 usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
467 strlcat(ir->phys, "/input0", sizeof(ir->phys));
468
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300469 /* Set IR protocol */
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300470 err = ir_input_init(input_dev, &ir->ir, IR_TYPE_OTHER);
Mauro Carvalho Chehab055cd552009-11-29 08:19:59 -0300471 if (err < 0)
472 goto err_out_free;
473
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300474 input_dev->name = ir->name;
475 input_dev->phys = ir->phys;
476 input_dev->id.bustype = BUS_USB;
477 input_dev->id.version = 1;
478 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
479 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
480
481 input_dev->dev.parent = &dev->udev->dev;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300482
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300483
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300484
485 /* all done */
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300486 err = ir_input_register(ir->input, dev->board.ir_codes,
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300487 &ir->props, MODULE_NAME);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300488 if (err)
489 goto err_out_stop;
490
491 return 0;
492 err_out_stop:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300493 dev->ir = NULL;
494 err_out_free:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300495 kfree(ir);
496 return err;
497}
498
499int em28xx_ir_fini(struct em28xx *dev)
500{
501 struct em28xx_IR *ir = dev->ir;
502
503 /* skip detach on non attached boards */
504 if (!ir)
505 return 0;
506
507 em28xx_ir_stop(ir);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300508 ir_input_unregister(ir->input);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300509 kfree(ir);
510
511 /* done */
512 dev->ir = NULL;
513 return 0;
514}
515
516/**********************************************************
517 Handle Webcam snapshot button
518 **********************************************************/
519
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -0300520static void em28xx_query_sbutton(struct work_struct *work)
521{
522 /* Poll the register and see if the button is depressed */
523 struct em28xx *dev =
524 container_of(work, struct em28xx, sbutton_query_work.work);
525 int ret;
526
527 ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP);
528
529 if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) {
530 u8 cleared;
531 /* Button is depressed, clear the register */
532 cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT;
533 em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1);
534
535 /* Not emulate the keypress */
536 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
537 1);
538 /* Now unpress the key */
539 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
540 0);
541 }
542
543 /* Schedule next poll */
544 schedule_delayed_work(&dev->sbutton_query_work,
545 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
546}
547
548void em28xx_register_snapshot_button(struct em28xx *dev)
549{
550 struct input_dev *input_dev;
551 int err;
552
553 em28xx_info("Registering snapshot button...\n");
554 input_dev = input_allocate_device();
555 if (!input_dev) {
556 em28xx_errdev("input_allocate_device failed\n");
557 return;
558 }
559
560 usb_make_path(dev->udev, dev->snapshot_button_path,
561 sizeof(dev->snapshot_button_path));
562 strlcat(dev->snapshot_button_path, "/sbutton",
563 sizeof(dev->snapshot_button_path));
564 INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton);
565
566 input_dev->name = "em28xx snapshot button";
567 input_dev->phys = dev->snapshot_button_path;
568 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
569 set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit);
570 input_dev->keycodesize = 0;
571 input_dev->keycodemax = 0;
572 input_dev->id.bustype = BUS_USB;
573 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
574 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
575 input_dev->id.version = 1;
576 input_dev->dev.parent = &dev->udev->dev;
577
578 err = input_register_device(input_dev);
579 if (err) {
580 em28xx_errdev("input_register_device failed\n");
581 input_free_device(input_dev);
582 return;
583 }
584
585 dev->sbutton_input_dev = input_dev;
586 schedule_delayed_work(&dev->sbutton_query_work,
587 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
588 return;
589
590}
591
592void em28xx_deregister_snapshot_button(struct em28xx *dev)
593{
594 if (dev->sbutton_input_dev != NULL) {
595 em28xx_info("Deregistering snapshot button\n");
596 cancel_rearming_delayed_work(&dev->sbutton_query_work);
597 input_unregister_device(dev->sbutton_input_dev);
598 dev->sbutton_input_dev = NULL;
599 }
600 return;
601}