blob: af0d935c29be2c52b98397a58501a4dc19feb169 [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>
30
Mauro Carvalho Chehabf7abcd32005-11-08 21:38:25 -080031#include "em28xx.h"
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080032
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -030033#define EM28XX_SNAPSHOT_KEY KEY_CAMERA
34#define EM28XX_SBUTTON_QUERY_INTERVAL 500
35#define EM28XX_R0C_USBSUSP_SNAPSHOT 0x20
36
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030037static unsigned int ir_debug;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080038module_param(ir_debug, int, 0644);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030039MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080040
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030041#define i2cdprintk(fmt, arg...) \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030042 if (ir_debug) { \
Jean Delvare1df8e982009-05-13 16:48:07 -030043 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030044 }
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080045
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030046#define dprintk(fmt, arg...) \
47 if (ir_debug) { \
48 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
49 }
50
51/**********************************************************
52 Polling structure used by em28xx IR's
53 **********************************************************/
54
Devin Heitmueller4b922532008-11-13 03:15:55 -030055struct em28xx_ir_poll_result {
56 unsigned int toggle_bit:1;
57 unsigned int read_count:7;
58 u8 rc_address;
59 u8 rc_data[4]; /* 1 byte on em2860/2880, 4 on em2874 */
60};
61
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030062struct em28xx_IR {
63 struct em28xx *dev;
64 struct input_dev *input;
65 struct ir_input_state ir;
66 char name[32];
67 char phys[32];
68
69 /* poll external decoder */
70 int polling;
Jean Delvaref263bac2009-03-07 07:43:01 -030071 struct delayed_work work;
Devin Heitmueller4b922532008-11-13 03:15:55 -030072 unsigned int last_toggle:1;
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -030073 unsigned int full_code:1;
Devin Heitmueller4b922532008-11-13 03:15:55 -030074 unsigned int last_readcount;
75 unsigned int repeat_interval;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030076
Devin Heitmueller4b922532008-11-13 03:15:55 -030077 int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030078};
79
80/**********************************************************
81 I2C IR based get keycodes - should be used with ir-kbd-i2c
82 **********************************************************/
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080083
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030084int em28xx_get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Markus Rechbergere43f14a2005-11-08 21:37:35 -080085{
86 unsigned char b;
87
88 /* poll IR chip */
Jean Delvarec668f322009-05-13 16:48:50 -030089 if (1 != i2c_master_recv(ir->c, &b, 1)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030090 i2cdprintk("read error\n");
Markus Rechbergere43f14a2005-11-08 21:37:35 -080091 return -EIO;
92 }
93
94 /* it seems that 0xFE indicates that a button is still hold
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -080095 down, while 0xff indicates that no button is hold
96 down. 0xfe sequences are sometimes interrupted by 0xFF */
Markus Rechbergere43f14a2005-11-08 21:37:35 -080097
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030098 i2cdprintk("key %02x\n", b);
Markus Rechbergere43f14a2005-11-08 21:37:35 -080099
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800100 if (b == 0xff)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800101 return 0;
102
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800103 if (b == 0xfe)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800104 /* keep old data */
105 return 1;
106
107 *ir_key = b;
108 *ir_raw = b;
109 return 1;
110}
111
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300112int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800113{
114 unsigned char buf[2];
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300115 u16 code;
116 int size;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800117
118 /* poll IR chip */
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300119 size = i2c_master_recv(ir->c, buf, sizeof(buf));
120
121 if (size != 2)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800122 return -EIO;
123
124 /* Does eliminate repeated parity code */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300125 if (buf[1] == 0xff)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800126 return 0;
127
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300128 ir->old = buf[1];
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800129
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300130 /*
131 * Rearranges bits to the right order.
132 * The bit order were determined experimentally by using
133 * The original Hauppauge Grey IR and another RC5 that uses addr=0x08
134 * The RC5 code has 14 bits, but we've experimentally determined
135 * the meaning for only 11 bits.
136 * So, the code translation is not complete. Yet, it is enough to
137 * work with the provided RC5 IR.
138 */
139 code =
140 ((buf[0] & 0x01) ? 0x0020 : 0) | /* 0010 0000 */
141 ((buf[0] & 0x02) ? 0x0010 : 0) | /* 0001 0000 */
142 ((buf[0] & 0x04) ? 0x0008 : 0) | /* 0000 1000 */
143 ((buf[0] & 0x08) ? 0x0004 : 0) | /* 0000 0100 */
144 ((buf[0] & 0x10) ? 0x0002 : 0) | /* 0000 0010 */
145 ((buf[0] & 0x20) ? 0x0001 : 0) | /* 0000 0001 */
146 ((buf[1] & 0x08) ? 0x1000 : 0) | /* 0001 0000 */
147 ((buf[1] & 0x10) ? 0x0800 : 0) | /* 0000 1000 */
148 ((buf[1] & 0x20) ? 0x0400 : 0) | /* 0000 0100 */
149 ((buf[1] & 0x40) ? 0x0200 : 0) | /* 0000 0010 */
150 ((buf[1] & 0x80) ? 0x0100 : 0); /* 0000 0001 */
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800151
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300152 i2cdprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x%02x)\n",
153 code, buf[1], buf[0]);
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800154
155 /* return key */
156 *ir_key = code;
157 *ir_raw = code;
158 return 1;
159}
160
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300161int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
162 u32 *ir_raw)
Markus Rechberger366cc642006-01-15 21:04:27 -0200163{
164 unsigned char buf[3];
165
166 /* poll IR chip */
167
Jean Delvarec668f322009-05-13 16:48:50 -0300168 if (3 != i2c_master_recv(ir->c, buf, 3)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300169 i2cdprintk("read error\n");
Markus Rechberger366cc642006-01-15 21:04:27 -0200170 return -EIO;
171 }
172
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300173 i2cdprintk("key %02x\n", buf[2]&0x3f);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300174 if (buf[0] != 0x00)
Markus Rechberger366cc642006-01-15 21:04:27 -0200175 return 0;
Markus Rechberger366cc642006-01-15 21:04:27 -0200176
177 *ir_key = buf[2]&0x3f;
178 *ir_raw = buf[2]&0x3f;
179
180 return 1;
181}
182
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300183/**********************************************************
184 Poll based get keycode functions
185 **********************************************************/
186
Devin Heitmueller4b922532008-11-13 03:15:55 -0300187/* This is for the em2860/em2880 */
188static int default_polling_getkey(struct em28xx_IR *ir,
189 struct em28xx_ir_poll_result *poll_result)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300190{
191 struct em28xx *dev = ir->dev;
192 int rc;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300193 u8 msg[3] = { 0, 0, 0 };
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300194
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300195 /* Read key toggle, brand, and key code
196 on registers 0x45, 0x46 and 0x47
197 */
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300198 rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR,
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300199 msg, sizeof(msg));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300200 if (rc < 0)
201 return rc;
202
Devin Heitmueller4b922532008-11-13 03:15:55 -0300203 /* Infrared toggle (Reg 0x45[7]) */
204 poll_result->toggle_bit = (msg[0] >> 7);
205
206 /* Infrared read count (Reg 0x45[6:0] */
207 poll_result->read_count = (msg[0] & 0x7f);
208
209 /* Remote Control Address (Reg 0x46) */
210 poll_result->rc_address = msg[1];
211
212 /* Remote Control Data (Reg 0x47) */
213 poll_result->rc_data[0] = msg[2];
214
215 return 0;
216}
217
218static int em2874_polling_getkey(struct em28xx_IR *ir,
219 struct em28xx_ir_poll_result *poll_result)
220{
221 struct em28xx *dev = ir->dev;
222 int rc;
223 u8 msg[5] = { 0, 0, 0, 0, 0 };
224
225 /* Read key toggle, brand, and key code
226 on registers 0x51-55
227 */
228 rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
229 msg, sizeof(msg));
230 if (rc < 0)
231 return rc;
232
233 /* Infrared toggle (Reg 0x51[7]) */
234 poll_result->toggle_bit = (msg[0] >> 7);
235
236 /* Infrared read count (Reg 0x51[6:0] */
237 poll_result->read_count = (msg[0] & 0x7f);
238
239 /* Remote Control Address (Reg 0x52) */
240 poll_result->rc_address = msg[1];
241
242 /* Remote Control Data (Reg 0x53-55) */
243 poll_result->rc_data[0] = msg[2];
244 poll_result->rc_data[1] = msg[3];
245 poll_result->rc_data[2] = msg[4];
246
247 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300248}
249
250/**********************************************************
251 Polling code for em28xx
252 **********************************************************/
253
254static void em28xx_ir_handle_key(struct em28xx_IR *ir)
255{
Devin Heitmueller4b922532008-11-13 03:15:55 -0300256 int result;
257 int do_sendkey = 0;
258 struct em28xx_ir_poll_result poll_result;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300259
Devin Heitmueller4b922532008-11-13 03:15:55 -0300260 /* read the registers containing the IR status */
261 result = ir->get_key(ir, &poll_result);
262 if (result < 0) {
263 dprintk("ir->get_key() failed %d\n", result);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300264 return;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300265 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300266
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300267 dprintk("ir->get_key result tb=%02x rc=%02x lr=%02x data=%02x%02x\n",
Devin Heitmueller4b922532008-11-13 03:15:55 -0300268 poll_result.toggle_bit, poll_result.read_count,
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300269 ir->last_readcount, poll_result.rc_address,
270 poll_result.rc_data[0]);
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300271
Devin Heitmueller4b922532008-11-13 03:15:55 -0300272 if (ir->dev->chip_id == CHIP_ID_EM2874) {
273 /* The em2874 clears the readcount field every time the
274 register is read. The em2860/2880 datasheet says that it
275 is supposed to clear the readcount, but it doesn't. So with
276 the em2874, we are looking for a non-zero read count as
277 opposed to a readcount that is incrementing */
278 ir->last_readcount = 0;
279 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300280
Devin Heitmueller4b922532008-11-13 03:15:55 -0300281 if (poll_result.read_count == 0) {
282 /* The button has not been pressed since the last read */
283 } else if (ir->last_toggle != poll_result.toggle_bit) {
284 /* A button has been pressed */
285 dprintk("button has been pressed\n");
286 ir->last_toggle = poll_result.toggle_bit;
287 ir->repeat_interval = 0;
288 do_sendkey = 1;
289 } else if (poll_result.toggle_bit == ir->last_toggle &&
290 poll_result.read_count > 0 &&
291 poll_result.read_count != ir->last_readcount) {
292 /* The button is still being held down */
293 dprintk("button being held down\n");
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300294
Devin Heitmueller4b922532008-11-13 03:15:55 -0300295 /* Debouncer for first keypress */
296 if (ir->repeat_interval++ > 9) {
297 /* Start repeating after 1 second */
298 do_sendkey = 1;
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300299 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300300 }
301
302 if (do_sendkey) {
303 dprintk("sending keypress\n");
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300304
305 if (ir->full_code)
306 ir_input_keydown(ir->input, &ir->ir,
307 poll_result.rc_address << 8 |
308 poll_result.rc_data[0]);
309 else
310 ir_input_keydown(ir->input, &ir->ir,
311 poll_result.rc_data[0]);
312
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300313 ir_input_nokey(ir->input, &ir->ir);
314 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300315
316 ir->last_readcount = poll_result.read_count;
317 return;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300318}
319
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300320static void em28xx_ir_work(struct work_struct *work)
321{
Jean Delvaref263bac2009-03-07 07:43:01 -0300322 struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300323
324 em28xx_ir_handle_key(ir);
Jean Delvaref263bac2009-03-07 07:43:01 -0300325 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300326}
327
Mauro Carvalho Chehab26cdc762009-01-05 01:00:40 -0300328static void em28xx_ir_start(struct em28xx_IR *ir)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300329{
Jean Delvaref263bac2009-03-07 07:43:01 -0300330 INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
331 schedule_delayed_work(&ir->work, 0);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300332}
333
334static void em28xx_ir_stop(struct em28xx_IR *ir)
335{
Jean Delvaref263bac2009-03-07 07:43:01 -0300336 cancel_delayed_work_sync(&ir->work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300337}
338
339int em28xx_ir_init(struct em28xx *dev)
340{
341 struct em28xx_IR *ir;
342 struct input_dev *input_dev;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300343 u8 ir_config;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300344 int err = -ENOMEM;
345
Mauro Carvalho Chehab505b6d02008-11-25 09:39:50 -0300346 if (dev->board.ir_codes == NULL) {
Devin Heitmueller4b922532008-11-13 03:15:55 -0300347 /* No remote control support */
348 return 0;
349 }
350
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300351 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
352 input_dev = input_allocate_device();
353 if (!ir || !input_dev)
354 goto err_out_free;
355
356 ir->input = input_dev;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300357 ir_config = EM2874_IR_RC5;
358
359 /* Adjust xclk based o IR table for RC5/NEC tables */
360 if (dev->board.ir_codes->ir_type == IR_TYPE_RC5) {
361 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
362 ir->full_code = 1;
363 } else if (dev->board.ir_codes->ir_type == IR_TYPE_NEC) {
364 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
365 ir_config = EM2874_IR_NEC;
366 ir->full_code = 1;
367 }
368 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
369 EM28XX_XCLK_IR_RC5_MODE);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300370
Devin Heitmueller4b922532008-11-13 03:15:55 -0300371 /* Setup the proper handler based on the chip */
372 switch (dev->chip_id) {
373 case CHIP_ID_EM2860:
374 case CHIP_ID_EM2883:
375 ir->get_key = default_polling_getkey;
Mauro Carvalho Chehab91812fa2008-11-12 14:05:46 -0300376 break;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300377 case CHIP_ID_EM2874:
378 ir->get_key = em2874_polling_getkey;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300379 em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1);
380 break;
381 default:
382 printk("Unrecognized em28xx chip id: IR not supported\n");
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300383 goto err_out_free;
384 }
385
Devin Heitmueller4b922532008-11-13 03:15:55 -0300386 /* This is how often we ask the chip for IR information */
387 ir->polling = 100; /* ms */
388
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300389 /* init input device */
390 snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
391 dev->name);
392
393 usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
394 strlcat(ir->phys, "/input0", sizeof(ir->phys));
395
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300396 err = ir_input_init(input_dev, &ir->ir, IR_TYPE_OTHER);
Mauro Carvalho Chehab055cd552009-11-29 08:19:59 -0300397 if (err < 0)
398 goto err_out_free;
399
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300400 input_dev->name = ir->name;
401 input_dev->phys = ir->phys;
402 input_dev->id.bustype = BUS_USB;
403 input_dev->id.version = 1;
404 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
405 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
406
407 input_dev->dev.parent = &dev->udev->dev;
408 /* record handles to ourself */
409 ir->dev = dev;
410 dev->ir = ir;
411
412 em28xx_ir_start(ir);
413
414 /* all done */
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300415 err = ir_input_register(ir->input, dev->board.ir_codes);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300416 if (err)
417 goto err_out_stop;
418
419 return 0;
420 err_out_stop:
421 em28xx_ir_stop(ir);
422 dev->ir = NULL;
423 err_out_free:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300424 kfree(ir);
425 return err;
426}
427
428int em28xx_ir_fini(struct em28xx *dev)
429{
430 struct em28xx_IR *ir = dev->ir;
431
432 /* skip detach on non attached boards */
433 if (!ir)
434 return 0;
435
436 em28xx_ir_stop(ir);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300437 ir_input_unregister(ir->input);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300438 kfree(ir);
439
440 /* done */
441 dev->ir = NULL;
442 return 0;
443}
444
445/**********************************************************
446 Handle Webcam snapshot button
447 **********************************************************/
448
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -0300449static void em28xx_query_sbutton(struct work_struct *work)
450{
451 /* Poll the register and see if the button is depressed */
452 struct em28xx *dev =
453 container_of(work, struct em28xx, sbutton_query_work.work);
454 int ret;
455
456 ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP);
457
458 if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) {
459 u8 cleared;
460 /* Button is depressed, clear the register */
461 cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT;
462 em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1);
463
464 /* Not emulate the keypress */
465 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
466 1);
467 /* Now unpress the key */
468 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
469 0);
470 }
471
472 /* Schedule next poll */
473 schedule_delayed_work(&dev->sbutton_query_work,
474 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
475}
476
477void em28xx_register_snapshot_button(struct em28xx *dev)
478{
479 struct input_dev *input_dev;
480 int err;
481
482 em28xx_info("Registering snapshot button...\n");
483 input_dev = input_allocate_device();
484 if (!input_dev) {
485 em28xx_errdev("input_allocate_device failed\n");
486 return;
487 }
488
489 usb_make_path(dev->udev, dev->snapshot_button_path,
490 sizeof(dev->snapshot_button_path));
491 strlcat(dev->snapshot_button_path, "/sbutton",
492 sizeof(dev->snapshot_button_path));
493 INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton);
494
495 input_dev->name = "em28xx snapshot button";
496 input_dev->phys = dev->snapshot_button_path;
497 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
498 set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit);
499 input_dev->keycodesize = 0;
500 input_dev->keycodemax = 0;
501 input_dev->id.bustype = BUS_USB;
502 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
503 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
504 input_dev->id.version = 1;
505 input_dev->dev.parent = &dev->udev->dev;
506
507 err = input_register_device(input_dev);
508 if (err) {
509 em28xx_errdev("input_register_device failed\n");
510 input_free_device(input_dev);
511 return;
512 }
513
514 dev->sbutton_input_dev = input_dev;
515 schedule_delayed_work(&dev->sbutton_query_work,
516 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
517 return;
518
519}
520
521void em28xx_deregister_snapshot_button(struct em28xx *dev)
522{
523 if (dev->sbutton_input_dev != NULL) {
524 em28xx_info("Deregistering snapshot button\n");
525 cancel_rearming_delayed_work(&dev->sbutton_query_work);
526 input_unregister_device(dev->sbutton_input_dev);
527 dev->sbutton_input_dev = NULL;
528 }
529 return;
530}