blob: 20a0001e88850c97e3f1282eeb82f1700a5b5d32 [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 Chehaba924a492008-11-12 08:41:29 -030042#define i2cdprintk(fmt, arg...) \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030043 if (ir_debug) { \
Jean Delvare1df8e982009-05-13 16:48:07 -030044 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030045 }
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080046
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030047#define dprintk(fmt, arg...) \
48 if (ir_debug) { \
49 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
50 }
51
52/**********************************************************
53 Polling structure used by em28xx IR's
54 **********************************************************/
55
Devin Heitmueller4b922532008-11-13 03:15:55 -030056struct em28xx_ir_poll_result {
57 unsigned int toggle_bit:1;
58 unsigned int read_count:7;
59 u8 rc_address;
60 u8 rc_data[4]; /* 1 byte on em2860/2880, 4 on em2874 */
61};
62
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030063struct em28xx_IR {
64 struct em28xx *dev;
65 struct input_dev *input;
66 struct ir_input_state ir;
67 char name[32];
68 char phys[32];
69
70 /* poll external decoder */
71 int polling;
Jean Delvaref263bac2009-03-07 07:43:01 -030072 struct delayed_work work;
Devin Heitmueller4b922532008-11-13 03:15:55 -030073 unsigned int last_toggle:1;
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -030074 unsigned int full_code:1;
Devin Heitmueller4b922532008-11-13 03:15:55 -030075 unsigned int last_readcount;
76 unsigned int repeat_interval;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030077
Devin Heitmueller4b922532008-11-13 03:15:55 -030078 int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *);
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -030079
80 /* IR device properties */
81
82 struct ir_dev_props props;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030083};
84
85/**********************************************************
86 I2C IR based get keycodes - should be used with ir-kbd-i2c
87 **********************************************************/
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080088
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030089int em28xx_get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Markus Rechbergere43f14a2005-11-08 21:37:35 -080090{
91 unsigned char b;
92
93 /* poll IR chip */
Jean Delvarec668f322009-05-13 16:48:50 -030094 if (1 != i2c_master_recv(ir->c, &b, 1)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030095 i2cdprintk("read error\n");
Markus Rechbergere43f14a2005-11-08 21:37:35 -080096 return -EIO;
97 }
98
99 /* it seems that 0xFE indicates that a button is still hold
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800100 down, while 0xff indicates that no button is hold
101 down. 0xfe sequences are sometimes interrupted by 0xFF */
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800102
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300103 i2cdprintk("key %02x\n", b);
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800104
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800105 if (b == 0xff)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800106 return 0;
107
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800108 if (b == 0xfe)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800109 /* keep old data */
110 return 1;
111
112 *ir_key = b;
113 *ir_raw = b;
114 return 1;
115}
116
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300117int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800118{
119 unsigned char buf[2];
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300120 u16 code;
121 int size;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800122
123 /* poll IR chip */
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300124 size = i2c_master_recv(ir->c, buf, sizeof(buf));
125
126 if (size != 2)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800127 return -EIO;
128
129 /* Does eliminate repeated parity code */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300130 if (buf[1] == 0xff)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800131 return 0;
132
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300133 ir->old = buf[1];
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800134
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300135 /*
136 * Rearranges bits to the right order.
137 * The bit order were determined experimentally by using
138 * The original Hauppauge Grey IR and another RC5 that uses addr=0x08
139 * The RC5 code has 14 bits, but we've experimentally determined
140 * the meaning for only 11 bits.
141 * So, the code translation is not complete. Yet, it is enough to
142 * work with the provided RC5 IR.
143 */
144 code =
145 ((buf[0] & 0x01) ? 0x0020 : 0) | /* 0010 0000 */
146 ((buf[0] & 0x02) ? 0x0010 : 0) | /* 0001 0000 */
147 ((buf[0] & 0x04) ? 0x0008 : 0) | /* 0000 1000 */
148 ((buf[0] & 0x08) ? 0x0004 : 0) | /* 0000 0100 */
149 ((buf[0] & 0x10) ? 0x0002 : 0) | /* 0000 0010 */
150 ((buf[0] & 0x20) ? 0x0001 : 0) | /* 0000 0001 */
151 ((buf[1] & 0x08) ? 0x1000 : 0) | /* 0001 0000 */
152 ((buf[1] & 0x10) ? 0x0800 : 0) | /* 0000 1000 */
153 ((buf[1] & 0x20) ? 0x0400 : 0) | /* 0000 0100 */
154 ((buf[1] & 0x40) ? 0x0200 : 0) | /* 0000 0010 */
155 ((buf[1] & 0x80) ? 0x0100 : 0); /* 0000 0001 */
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800156
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300157 i2cdprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x%02x)\n",
158 code, buf[1], buf[0]);
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800159
160 /* return key */
161 *ir_key = code;
162 *ir_raw = code;
163 return 1;
164}
165
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300166int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
167 u32 *ir_raw)
Markus Rechberger366cc642006-01-15 21:04:27 -0200168{
169 unsigned char buf[3];
170
171 /* poll IR chip */
172
Jean Delvarec668f322009-05-13 16:48:50 -0300173 if (3 != i2c_master_recv(ir->c, buf, 3)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300174 i2cdprintk("read error\n");
Markus Rechberger366cc642006-01-15 21:04:27 -0200175 return -EIO;
176 }
177
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300178 i2cdprintk("key %02x\n", buf[2]&0x3f);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300179 if (buf[0] != 0x00)
Markus Rechberger366cc642006-01-15 21:04:27 -0200180 return 0;
Markus Rechberger366cc642006-01-15 21:04:27 -0200181
182 *ir_key = buf[2]&0x3f;
183 *ir_raw = buf[2]&0x3f;
184
185 return 1;
186}
187
Magnus Almca39d842009-11-13 05:48:24 -0300188int em28xx_get_key_winfast_usbii_deluxe(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
189{
190 unsigned char subaddr, keydetect, key;
191
192 struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0, .buf = &subaddr, .len = 1},
193
194 { .addr = ir->c->addr, .flags = I2C_M_RD, .buf = &keydetect, .len = 1} };
195
196 subaddr = 0x10;
197 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
198 i2cdprintk("read error\n");
199 return -EIO;
200 }
201 if (keydetect == 0x00)
202 return 0;
203
204 subaddr = 0x00;
205 msg[1].buf = &key;
206 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
207 i2cdprintk("read error\n");
208 return -EIO;
209 }
210 if (key == 0x00)
211 return 0;
212
213 *ir_key = key;
214 *ir_raw = key;
215 return 1;
216}
217
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300218/**********************************************************
219 Poll based get keycode functions
220 **********************************************************/
221
Devin Heitmueller4b922532008-11-13 03:15:55 -0300222/* This is for the em2860/em2880 */
223static int default_polling_getkey(struct em28xx_IR *ir,
224 struct em28xx_ir_poll_result *poll_result)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300225{
226 struct em28xx *dev = ir->dev;
227 int rc;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300228 u8 msg[3] = { 0, 0, 0 };
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300229
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300230 /* Read key toggle, brand, and key code
231 on registers 0x45, 0x46 and 0x47
232 */
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300233 rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR,
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300234 msg, sizeof(msg));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300235 if (rc < 0)
236 return rc;
237
Devin Heitmueller4b922532008-11-13 03:15:55 -0300238 /* Infrared toggle (Reg 0x45[7]) */
239 poll_result->toggle_bit = (msg[0] >> 7);
240
241 /* Infrared read count (Reg 0x45[6:0] */
242 poll_result->read_count = (msg[0] & 0x7f);
243
244 /* Remote Control Address (Reg 0x46) */
245 poll_result->rc_address = msg[1];
246
247 /* Remote Control Data (Reg 0x47) */
248 poll_result->rc_data[0] = msg[2];
249
250 return 0;
251}
252
253static int em2874_polling_getkey(struct em28xx_IR *ir,
254 struct em28xx_ir_poll_result *poll_result)
255{
256 struct em28xx *dev = ir->dev;
257 int rc;
258 u8 msg[5] = { 0, 0, 0, 0, 0 };
259
260 /* Read key toggle, brand, and key code
261 on registers 0x51-55
262 */
263 rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
264 msg, sizeof(msg));
265 if (rc < 0)
266 return rc;
267
268 /* Infrared toggle (Reg 0x51[7]) */
269 poll_result->toggle_bit = (msg[0] >> 7);
270
271 /* Infrared read count (Reg 0x51[6:0] */
272 poll_result->read_count = (msg[0] & 0x7f);
273
274 /* Remote Control Address (Reg 0x52) */
275 poll_result->rc_address = msg[1];
276
277 /* Remote Control Data (Reg 0x53-55) */
278 poll_result->rc_data[0] = msg[2];
279 poll_result->rc_data[1] = msg[3];
280 poll_result->rc_data[2] = msg[4];
281
282 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300283}
284
285/**********************************************************
286 Polling code for em28xx
287 **********************************************************/
288
289static void em28xx_ir_handle_key(struct em28xx_IR *ir)
290{
Devin Heitmueller4b922532008-11-13 03:15:55 -0300291 int result;
292 int do_sendkey = 0;
293 struct em28xx_ir_poll_result poll_result;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300294
Devin Heitmueller4b922532008-11-13 03:15:55 -0300295 /* read the registers containing the IR status */
296 result = ir->get_key(ir, &poll_result);
297 if (result < 0) {
298 dprintk("ir->get_key() failed %d\n", result);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300299 return;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300300 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300301
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300302 dprintk("ir->get_key result tb=%02x rc=%02x lr=%02x data=%02x%02x\n",
Devin Heitmueller4b922532008-11-13 03:15:55 -0300303 poll_result.toggle_bit, poll_result.read_count,
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300304 ir->last_readcount, poll_result.rc_address,
305 poll_result.rc_data[0]);
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300306
Devin Heitmueller4b922532008-11-13 03:15:55 -0300307 if (ir->dev->chip_id == CHIP_ID_EM2874) {
308 /* The em2874 clears the readcount field every time the
309 register is read. The em2860/2880 datasheet says that it
310 is supposed to clear the readcount, but it doesn't. So with
311 the em2874, we are looking for a non-zero read count as
312 opposed to a readcount that is incrementing */
313 ir->last_readcount = 0;
314 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300315
Devin Heitmueller4b922532008-11-13 03:15:55 -0300316 if (poll_result.read_count == 0) {
317 /* The button has not been pressed since the last read */
318 } else if (ir->last_toggle != poll_result.toggle_bit) {
319 /* A button has been pressed */
320 dprintk("button has been pressed\n");
321 ir->last_toggle = poll_result.toggle_bit;
322 ir->repeat_interval = 0;
323 do_sendkey = 1;
324 } else if (poll_result.toggle_bit == ir->last_toggle &&
325 poll_result.read_count > 0 &&
326 poll_result.read_count != ir->last_readcount) {
327 /* The button is still being held down */
328 dprintk("button being held down\n");
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300329
Devin Heitmueller4b922532008-11-13 03:15:55 -0300330 /* Debouncer for first keypress */
331 if (ir->repeat_interval++ > 9) {
332 /* Start repeating after 1 second */
333 do_sendkey = 1;
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300334 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300335 }
336
337 if (do_sendkey) {
338 dprintk("sending keypress\n");
Mauro Carvalho Chehab02781552009-11-27 23:28:40 -0300339
340 if (ir->full_code)
341 ir_input_keydown(ir->input, &ir->ir,
342 poll_result.rc_address << 8 |
343 poll_result.rc_data[0]);
344 else
345 ir_input_keydown(ir->input, &ir->ir,
346 poll_result.rc_data[0]);
347
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300348 ir_input_nokey(ir->input, &ir->ir);
349 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300350
351 ir->last_readcount = poll_result.read_count;
352 return;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300353}
354
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300355static void em28xx_ir_work(struct work_struct *work)
356{
Jean Delvaref263bac2009-03-07 07:43:01 -0300357 struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300358
359 em28xx_ir_handle_key(ir);
Jean Delvaref263bac2009-03-07 07:43:01 -0300360 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300361}
362
Mauro Carvalho Chehab26cdc762009-01-05 01:00:40 -0300363static void em28xx_ir_start(struct em28xx_IR *ir)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300364{
Jean Delvaref263bac2009-03-07 07:43:01 -0300365 INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
366 schedule_delayed_work(&ir->work, 0);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300367}
368
369static void em28xx_ir_stop(struct em28xx_IR *ir)
370{
Jean Delvaref263bac2009-03-07 07:43:01 -0300371 cancel_delayed_work_sync(&ir->work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300372}
373
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300374int em28xx_ir_change_protocol(void *priv, u64 ir_type)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300375{
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300376 int rc = 0;
377 struct em28xx_IR *ir = priv;
378 struct em28xx *dev = ir->dev;
379 u8 ir_config = EM2874_IR_RC5;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300380
381 /* Adjust xclk based o IR table for RC5/NEC tables */
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300382
Mauro Carvalho Chehab3f831102009-12-14 02:59:19 -0300383 dev->board.ir_codes->ir_type = IR_TYPE_OTHER;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300384 if (ir_type == IR_TYPE_RC5) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300385 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
386 ir->full_code = 1;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300387 } else if (ir_type == IR_TYPE_NEC) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300388 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
389 ir_config = EM2874_IR_NEC;
390 ir->full_code = 1;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300391 } else
392 rc = -EINVAL;
393
Mauro Carvalho Chehab3f831102009-12-14 02:59:19 -0300394 dev->board.ir_codes->ir_type = ir_type;
395
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300396 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
397 EM28XX_XCLK_IR_RC5_MODE);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300398
Devin Heitmueller4b922532008-11-13 03:15:55 -0300399 /* Setup the proper handler based on the chip */
400 switch (dev->chip_id) {
401 case CHIP_ID_EM2860:
402 case CHIP_ID_EM2883:
403 ir->get_key = default_polling_getkey;
Mauro Carvalho Chehab91812fa2008-11-12 14:05:46 -0300404 break;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300405 case CHIP_ID_EM2874:
406 ir->get_key = em2874_polling_getkey;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300407 em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1);
408 break;
409 default:
410 printk("Unrecognized em28xx chip id: IR not supported\n");
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300411 rc = -EINVAL;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300412 }
413
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300414 return rc;
415}
416
417int em28xx_ir_init(struct em28xx *dev)
418{
419 struct em28xx_IR *ir;
420 struct input_dev *input_dev;
421 int err = -ENOMEM;
422
423 if (dev->board.ir_codes == NULL) {
424 /* No remote control support */
425 return 0;
426 }
427
428 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
429 input_dev = input_allocate_device();
430 if (!ir || !input_dev)
431 goto err_out_free;
432
433 /* record handles to ourself */
434 ir->dev = dev;
435 dev->ir = ir;
436
437 ir->input = input_dev;
438
439 /*
440 * em2874 supports more protocols. For now, let's just announce
441 * the two protocols that were already tested
442 */
443 ir->props.allowed_protos = IR_TYPE_RC5 | IR_TYPE_NEC;
444 ir->props.priv = ir;
445 ir->props.change_protocol = em28xx_ir_change_protocol;
446
Devin Heitmueller4b922532008-11-13 03:15:55 -0300447 /* This is how often we ask the chip for IR information */
448 ir->polling = 100; /* ms */
449
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300450 /* init input device */
451 snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
452 dev->name);
453
454 usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
455 strlcat(ir->phys, "/input0", sizeof(ir->phys));
456
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300457 /* Set IR protocol */
458 em28xx_ir_change_protocol(ir, dev->board.ir_codes->ir_type);
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300459 err = ir_input_init(input_dev, &ir->ir, IR_TYPE_OTHER);
Mauro Carvalho Chehab055cd552009-11-29 08:19:59 -0300460 if (err < 0)
461 goto err_out_free;
462
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300463 input_dev->name = ir->name;
464 input_dev->phys = ir->phys;
465 input_dev->id.bustype = BUS_USB;
466 input_dev->id.version = 1;
467 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
468 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
469
470 input_dev->dev.parent = &dev->udev->dev;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300471
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300472
473 em28xx_ir_start(ir);
474
475 /* all done */
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300476 err = ir_input_register(ir->input, dev->board.ir_codes,
477 &ir->props);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300478 if (err)
479 goto err_out_stop;
480
481 return 0;
482 err_out_stop:
483 em28xx_ir_stop(ir);
484 dev->ir = NULL;
485 err_out_free:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300486 kfree(ir);
487 return err;
488}
489
490int em28xx_ir_fini(struct em28xx *dev)
491{
492 struct em28xx_IR *ir = dev->ir;
493
494 /* skip detach on non attached boards */
495 if (!ir)
496 return 0;
497
498 em28xx_ir_stop(ir);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300499 ir_input_unregister(ir->input);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300500 kfree(ir);
501
502 /* done */
503 dev->ir = NULL;
504 return 0;
505}
506
507/**********************************************************
508 Handle Webcam snapshot button
509 **********************************************************/
510
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -0300511static void em28xx_query_sbutton(struct work_struct *work)
512{
513 /* Poll the register and see if the button is depressed */
514 struct em28xx *dev =
515 container_of(work, struct em28xx, sbutton_query_work.work);
516 int ret;
517
518 ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP);
519
520 if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) {
521 u8 cleared;
522 /* Button is depressed, clear the register */
523 cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT;
524 em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1);
525
526 /* Not emulate the keypress */
527 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
528 1);
529 /* Now unpress the key */
530 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
531 0);
532 }
533
534 /* Schedule next poll */
535 schedule_delayed_work(&dev->sbutton_query_work,
536 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
537}
538
539void em28xx_register_snapshot_button(struct em28xx *dev)
540{
541 struct input_dev *input_dev;
542 int err;
543
544 em28xx_info("Registering snapshot button...\n");
545 input_dev = input_allocate_device();
546 if (!input_dev) {
547 em28xx_errdev("input_allocate_device failed\n");
548 return;
549 }
550
551 usb_make_path(dev->udev, dev->snapshot_button_path,
552 sizeof(dev->snapshot_button_path));
553 strlcat(dev->snapshot_button_path, "/sbutton",
554 sizeof(dev->snapshot_button_path));
555 INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton);
556
557 input_dev->name = "em28xx snapshot button";
558 input_dev->phys = dev->snapshot_button_path;
559 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
560 set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit);
561 input_dev->keycodesize = 0;
562 input_dev->keycodemax = 0;
563 input_dev->id.bustype = BUS_USB;
564 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
565 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
566 input_dev->id.version = 1;
567 input_dev->dev.parent = &dev->udev->dev;
568
569 err = input_register_device(input_dev);
570 if (err) {
571 em28xx_errdev("input_register_device failed\n");
572 input_free_device(input_dev);
573 return;
574 }
575
576 dev->sbutton_input_dev = input_dev;
577 schedule_delayed_work(&dev->sbutton_query_work,
578 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
579 return;
580
581}
582
583void em28xx_deregister_snapshot_button(struct em28xx *dev)
584{
585 if (dev->sbutton_input_dev != NULL) {
586 em28xx_info("Deregistering snapshot button\n");
587 cancel_rearming_delayed_work(&dev->sbutton_query_work);
588 input_unregister_device(dev->sbutton_input_dev);
589 dev->sbutton_input_dev = NULL;
590 }
591 return;
592}