blob: dd6e3f2dfba9e476b99a71af2e3f971a1af1d6b1 [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>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080028#include <linux/usb.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080030
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 Chehab727e6252010-03-12 21:18:14 -030041#define MODULE_NAME "em28xx"
42
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030043#define i2cdprintk(fmt, arg...) \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030044 if (ir_debug) { \
Jean Delvare1df8e982009-05-13 16:48:07 -030045 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -030046 }
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080047
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030048#define dprintk(fmt, arg...) \
49 if (ir_debug) { \
50 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg); \
51 }
52
53/**********************************************************
54 Polling structure used by em28xx IR's
55 **********************************************************/
56
Devin Heitmueller4b922532008-11-13 03:15:55 -030057struct em28xx_ir_poll_result {
58 unsigned int toggle_bit:1;
59 unsigned int read_count:7;
60 u8 rc_address;
61 u8 rc_data[4]; /* 1 byte on em2860/2880, 4 on em2874 */
62};
63
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030064struct em28xx_IR {
65 struct em28xx *dev;
David Härdemand8b4b582010-10-29 16:08:23 -030066 struct rc_dev *rc;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030067 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;
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;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030075
Devin Heitmueller4b922532008-11-13 03:15:55 -030076 int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030077};
78
79/**********************************************************
80 I2C IR based get keycodes - should be used with ir-kbd-i2c
81 **********************************************************/
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -080082
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -030083int em28xx_get_key_terratec(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Markus Rechbergere43f14a2005-11-08 21:37:35 -080084{
85 unsigned char b;
86
87 /* poll IR chip */
Jean Delvarec668f322009-05-13 16:48:50 -030088 if (1 != i2c_master_recv(ir->c, &b, 1)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030089 i2cdprintk("read error\n");
Markus Rechbergere43f14a2005-11-08 21:37:35 -080090 return -EIO;
91 }
92
93 /* it seems that 0xFE indicates that a button is still hold
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -080094 down, while 0xff indicates that no button is hold
95 down. 0xfe sequences are sometimes interrupted by 0xFF */
Markus Rechbergere43f14a2005-11-08 21:37:35 -080096
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -030097 i2cdprintk("key %02x\n", b);
Markus Rechbergere43f14a2005-11-08 21:37:35 -080098
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -080099 if (b == 0xff)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800100 return 0;
101
Mauro Carvalho Chehab4f9c05a2005-11-08 21:37:36 -0800102 if (b == 0xfe)
Markus Rechbergere43f14a2005-11-08 21:37:35 -0800103 /* keep old data */
104 return 1;
105
106 *ir_key = b;
107 *ir_raw = b;
108 return 1;
109}
110
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300111int em28xx_get_key_em_haup(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800112{
113 unsigned char buf[2];
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300114 u16 code;
115 int size;
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800116
117 /* poll IR chip */
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300118 size = i2c_master_recv(ir->c, buf, sizeof(buf));
119
120 if (size != 2)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800121 return -EIO;
122
123 /* Does eliminate repeated parity code */
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300124 if (buf[1] == 0xff)
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800125 return 0;
126
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300127 ir->old = buf[1];
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800128
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300129 /*
130 * Rearranges bits to the right order.
131 * The bit order were determined experimentally by using
132 * The original Hauppauge Grey IR and another RC5 that uses addr=0x08
133 * The RC5 code has 14 bits, but we've experimentally determined
134 * the meaning for only 11 bits.
135 * So, the code translation is not complete. Yet, it is enough to
136 * work with the provided RC5 IR.
137 */
138 code =
139 ((buf[0] & 0x01) ? 0x0020 : 0) | /* 0010 0000 */
140 ((buf[0] & 0x02) ? 0x0010 : 0) | /* 0001 0000 */
141 ((buf[0] & 0x04) ? 0x0008 : 0) | /* 0000 1000 */
142 ((buf[0] & 0x08) ? 0x0004 : 0) | /* 0000 0100 */
143 ((buf[0] & 0x10) ? 0x0002 : 0) | /* 0000 0010 */
144 ((buf[0] & 0x20) ? 0x0001 : 0) | /* 0000 0001 */
145 ((buf[1] & 0x08) ? 0x1000 : 0) | /* 0001 0000 */
146 ((buf[1] & 0x10) ? 0x0800 : 0) | /* 0000 1000 */
147 ((buf[1] & 0x20) ? 0x0400 : 0) | /* 0000 0100 */
148 ((buf[1] & 0x40) ? 0x0200 : 0) | /* 0000 0010 */
149 ((buf[1] & 0x80) ? 0x0100 : 0); /* 0000 0001 */
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800150
Mauro Carvalho Chehabb7799742009-12-05 23:24:50 -0300151 i2cdprintk("ir hauppauge (em2840): code=0x%02x (rcv=0x%02x%02x)\n",
152 code, buf[1], buf[0]);
Mauro Carvalho Chehabd5e52652005-11-08 21:37:32 -0800153
154 /* return key */
155 *ir_key = code;
156 *ir_raw = code;
157 return 1;
158}
159
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300160int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
161 u32 *ir_raw)
Markus Rechberger366cc642006-01-15 21:04:27 -0200162{
163 unsigned char buf[3];
164
165 /* poll IR chip */
166
Jean Delvarec668f322009-05-13 16:48:50 -0300167 if (3 != i2c_master_recv(ir->c, buf, 3)) {
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300168 i2cdprintk("read error\n");
Markus Rechberger366cc642006-01-15 21:04:27 -0200169 return -EIO;
170 }
171
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300172 i2cdprintk("key %02x\n", buf[2]&0x3f);
Douglas Schilling Landgraf6ea54d92008-04-17 21:41:10 -0300173 if (buf[0] != 0x00)
Markus Rechberger366cc642006-01-15 21:04:27 -0200174 return 0;
Markus Rechberger366cc642006-01-15 21:04:27 -0200175
176 *ir_key = buf[2]&0x3f;
177 *ir_raw = buf[2]&0x3f;
178
179 return 1;
180}
181
Magnus Almca39d842009-11-13 05:48:24 -0300182int em28xx_get_key_winfast_usbii_deluxe(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
183{
184 unsigned char subaddr, keydetect, key;
185
186 struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0, .buf = &subaddr, .len = 1},
187
188 { .addr = ir->c->addr, .flags = I2C_M_RD, .buf = &keydetect, .len = 1} };
189
190 subaddr = 0x10;
191 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
192 i2cdprintk("read error\n");
193 return -EIO;
194 }
195 if (keydetect == 0x00)
196 return 0;
197
198 subaddr = 0x00;
199 msg[1].buf = &key;
200 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
201 i2cdprintk("read error\n");
202 return -EIO;
203 }
204 if (key == 0x00)
205 return 0;
206
207 *ir_key = key;
208 *ir_raw = key;
209 return 1;
210}
211
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300212/**********************************************************
213 Poll based get keycode functions
214 **********************************************************/
215
Devin Heitmueller4b922532008-11-13 03:15:55 -0300216/* This is for the em2860/em2880 */
217static int default_polling_getkey(struct em28xx_IR *ir,
218 struct em28xx_ir_poll_result *poll_result)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300219{
220 struct em28xx *dev = ir->dev;
221 int rc;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300222 u8 msg[3] = { 0, 0, 0 };
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300223
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300224 /* Read key toggle, brand, and key code
225 on registers 0x45, 0x46 and 0x47
226 */
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300227 rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR,
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300228 msg, sizeof(msg));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300229 if (rc < 0)
230 return rc;
231
Devin Heitmueller4b922532008-11-13 03:15:55 -0300232 /* Infrared toggle (Reg 0x45[7]) */
233 poll_result->toggle_bit = (msg[0] >> 7);
234
235 /* Infrared read count (Reg 0x45[6:0] */
236 poll_result->read_count = (msg[0] & 0x7f);
237
238 /* Remote Control Address (Reg 0x46) */
239 poll_result->rc_address = msg[1];
240
241 /* Remote Control Data (Reg 0x47) */
242 poll_result->rc_data[0] = msg[2];
243
244 return 0;
245}
246
247static int em2874_polling_getkey(struct em28xx_IR *ir,
248 struct em28xx_ir_poll_result *poll_result)
249{
250 struct em28xx *dev = ir->dev;
251 int rc;
252 u8 msg[5] = { 0, 0, 0, 0, 0 };
253
254 /* Read key toggle, brand, and key code
255 on registers 0x51-55
256 */
257 rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
258 msg, sizeof(msg));
259 if (rc < 0)
260 return rc;
261
262 /* Infrared toggle (Reg 0x51[7]) */
263 poll_result->toggle_bit = (msg[0] >> 7);
264
265 /* Infrared read count (Reg 0x51[6:0] */
266 poll_result->read_count = (msg[0] & 0x7f);
267
268 /* Remote Control Address (Reg 0x52) */
269 poll_result->rc_address = msg[1];
270
271 /* Remote Control Data (Reg 0x53-55) */
272 poll_result->rc_data[0] = msg[2];
273 poll_result->rc_data[1] = msg[3];
274 poll_result->rc_data[2] = msg[4];
275
276 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300277}
278
279/**********************************************************
280 Polling code for em28xx
281 **********************************************************/
282
283static void em28xx_ir_handle_key(struct em28xx_IR *ir)
284{
Devin Heitmueller4b922532008-11-13 03:15:55 -0300285 int result;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300286 struct em28xx_ir_poll_result poll_result;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300287
Devin Heitmueller4b922532008-11-13 03:15:55 -0300288 /* read the registers containing the IR status */
289 result = ir->get_key(ir, &poll_result);
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300290 if (unlikely(result < 0)) {
Devin Heitmueller4b922532008-11-13 03:15:55 -0300291 dprintk("ir->get_key() failed %d\n", result);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300292 return;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300293 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300294
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300295 if (unlikely(poll_result.read_count != ir->last_readcount)) {
296 dprintk("%s: toggle: %d, count: %d, key 0x%02x%02x\n", __func__,
297 poll_result.toggle_bit, poll_result.read_count,
298 poll_result.rc_address, poll_result.rc_data[0]);
David Härdemana4695852010-06-07 16:32:23 -0300299 if (ir->full_code)
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300300 rc_keydown(ir->rc,
David Härdemana4695852010-06-07 16:32:23 -0300301 poll_result.rc_address << 8 |
302 poll_result.rc_data[0],
303 poll_result.toggle_bit);
304 else
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300305 rc_keydown(ir->rc,
David Härdemana4695852010-06-07 16:32:23 -0300306 poll_result.rc_data[0],
307 poll_result.toggle_bit);
David Härdemana4695852010-06-07 16:32:23 -0300308
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200309 if (ir->dev->chip_id == CHIP_ID_EM2874 ||
310 ir->dev->chip_id == CHIP_ID_EM2884)
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300311 /* The em2874 clears the readcount field every time the
312 register is read. The em2860/2880 datasheet says that it
313 is supposed to clear the readcount, but it doesn't. So with
314 the em2874, we are looking for a non-zero read count as
315 opposed to a readcount that is incrementing */
316 ir->last_readcount = 0;
317 else
318 ir->last_readcount = poll_result.read_count;
319 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300320}
321
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300322static void em28xx_ir_work(struct work_struct *work)
323{
Jean Delvaref263bac2009-03-07 07:43:01 -0300324 struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300325
326 em28xx_ir_handle_key(ir);
Jean Delvaref263bac2009-03-07 07:43:01 -0300327 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300328}
329
David Härdemand8b4b582010-10-29 16:08:23 -0300330static int em28xx_ir_start(struct rc_dev *rc)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300331{
David Härdemand8b4b582010-10-29 16:08:23 -0300332 struct em28xx_IR *ir = rc->priv;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300333
Jean Delvaref263bac2009-03-07 07:43:01 -0300334 INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
335 schedule_delayed_work(&ir->work, 0);
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300336
337 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300338}
339
David Härdemand8b4b582010-10-29 16:08:23 -0300340static void em28xx_ir_stop(struct rc_dev *rc)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300341{
David Härdemand8b4b582010-10-29 16:08:23 -0300342 struct em28xx_IR *ir = rc->priv;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300343
Jean Delvaref263bac2009-03-07 07:43:01 -0300344 cancel_delayed_work_sync(&ir->work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300345}
346
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300347int em28xx_ir_change_protocol(struct rc_dev *rc_dev, u64 rc_type)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300348{
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300349 int rc = 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300350 struct em28xx_IR *ir = rc_dev->priv;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300351 struct em28xx *dev = ir->dev;
352 u8 ir_config = EM2874_IR_RC5;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300353
354 /* Adjust xclk based o IR table for RC5/NEC tables */
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300355
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300356 if (rc_type == RC_TYPE_RC5) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300357 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
358 ir->full_code = 1;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300359 } else if (rc_type == RC_TYPE_NEC) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300360 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
361 ir_config = EM2874_IR_NEC;
362 ir->full_code = 1;
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300363 } else if (rc_type != RC_TYPE_UNKNOWN)
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300364 rc = -EINVAL;
365
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300366 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
367 EM28XX_XCLK_IR_RC5_MODE);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300368
Devin Heitmueller4b922532008-11-13 03:15:55 -0300369 /* Setup the proper handler based on the chip */
370 switch (dev->chip_id) {
371 case CHIP_ID_EM2860:
372 case CHIP_ID_EM2883:
373 ir->get_key = default_polling_getkey;
Mauro Carvalho Chehab91812fa2008-11-12 14:05:46 -0300374 break;
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200375 case CHIP_ID_EM2884:
Devin Heitmueller4b922532008-11-13 03:15:55 -0300376 case CHIP_ID_EM2874:
Antti Palosaaria24ec442011-05-25 16:56:37 -0300377 case CHIP_ID_EM28174:
Devin Heitmueller4b922532008-11-13 03:15:55 -0300378 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:
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200382 printk("Unrecognized em28xx chip id 0x%02x: IR not supported\n",
383 dev->chip_id);
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300384 rc = -EINVAL;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300385 }
386
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300387 return rc;
388}
389
390int em28xx_ir_init(struct em28xx *dev)
391{
392 struct em28xx_IR *ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300393 struct rc_dev *rc;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300394 int err = -ENOMEM;
395
396 if (dev->board.ir_codes == NULL) {
397 /* No remote control support */
398 return 0;
399 }
400
401 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300402 rc = rc_allocate_device();
403 if (!ir || !rc)
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300404 goto err_out_free;
405
406 /* record handles to ourself */
407 ir->dev = dev;
408 dev->ir = ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300409 ir->rc = rc;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300410
411 /*
412 * em2874 supports more protocols. For now, let's just announce
413 * the two protocols that were already tested
414 */
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300415 rc->allowed_protos = RC_TYPE_RC5 | RC_TYPE_NEC;
David Härdemand8b4b582010-10-29 16:08:23 -0300416 rc->priv = ir;
417 rc->change_protocol = em28xx_ir_change_protocol;
418 rc->open = em28xx_ir_start;
419 rc->close = em28xx_ir_stop;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300420
421 /* By default, keep protocol field untouched */
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -0300422 err = em28xx_ir_change_protocol(rc, RC_TYPE_UNKNOWN);
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300423 if (err)
424 goto err_out_free;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300425
Devin Heitmueller4b922532008-11-13 03:15:55 -0300426 /* This is how often we ask the chip for IR information */
427 ir->polling = 100; /* ms */
428
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300429 /* init input device */
430 snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
431 dev->name);
432
433 usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
434 strlcat(ir->phys, "/input0", sizeof(ir->phys));
435
David Härdemand8b4b582010-10-29 16:08:23 -0300436 rc->input_name = ir->name;
437 rc->input_phys = ir->phys;
438 rc->input_id.bustype = BUS_USB;
439 rc->input_id.version = 1;
440 rc->input_id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
441 rc->input_id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
442 rc->dev.parent = &dev->udev->dev;
443 rc->map_name = dev->board.ir_codes;
444 rc->driver_name = MODULE_NAME;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300445
446 /* all done */
David Härdemand8b4b582010-10-29 16:08:23 -0300447 err = rc_register_device(rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300448 if (err)
449 goto err_out_stop;
450
Ezequiel García2fd6f8d2012-03-26 09:13:32 -0300451 em28xx_register_i2c_ir(dev);
452
453#if defined(CONFIG_MODULES) && defined(MODULE)
454 if (dev->board.has_ir_i2c)
455 request_module("ir-kbd-i2c");
456#endif
457 if (dev->board.has_snapshot_button)
458 em28xx_register_snapshot_button(dev);
459
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300460 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300461
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300462 err_out_stop:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300463 dev->ir = NULL;
464 err_out_free:
David Härdemand8b4b582010-10-29 16:08:23 -0300465 rc_free_device(rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300466 kfree(ir);
467 return err;
468}
469
470int em28xx_ir_fini(struct em28xx *dev)
471{
472 struct em28xx_IR *ir = dev->ir;
473
Ezequiel García2fd6f8d2012-03-26 09:13:32 -0300474 em28xx_deregister_snapshot_button(dev);
475
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300476 /* skip detach on non attached boards */
477 if (!ir)
478 return 0;
479
Mauro Carvalho Chehab6d514772011-07-29 02:26:59 -0300480 if (ir->rc)
481 rc_unregister_device(ir->rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300482
483 /* done */
Mauro Carvalho Chehab6d514772011-07-29 02:26:59 -0300484 kfree(ir);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300485 dev->ir = NULL;
486 return 0;
487}
488
489/**********************************************************
490 Handle Webcam snapshot button
491 **********************************************************/
492
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -0300493static void em28xx_query_sbutton(struct work_struct *work)
494{
495 /* Poll the register and see if the button is depressed */
496 struct em28xx *dev =
497 container_of(work, struct em28xx, sbutton_query_work.work);
498 int ret;
499
500 ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP);
501
502 if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) {
503 u8 cleared;
504 /* Button is depressed, clear the register */
505 cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT;
506 em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1);
507
508 /* Not emulate the keypress */
509 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
510 1);
511 /* Now unpress the key */
512 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
513 0);
514 }
515
516 /* Schedule next poll */
517 schedule_delayed_work(&dev->sbutton_query_work,
518 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
519}
520
521void em28xx_register_snapshot_button(struct em28xx *dev)
522{
523 struct input_dev *input_dev;
524 int err;
525
526 em28xx_info("Registering snapshot button...\n");
527 input_dev = input_allocate_device();
528 if (!input_dev) {
529 em28xx_errdev("input_allocate_device failed\n");
530 return;
531 }
532
533 usb_make_path(dev->udev, dev->snapshot_button_path,
534 sizeof(dev->snapshot_button_path));
535 strlcat(dev->snapshot_button_path, "/sbutton",
536 sizeof(dev->snapshot_button_path));
537 INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton);
538
539 input_dev->name = "em28xx snapshot button";
540 input_dev->phys = dev->snapshot_button_path;
541 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
542 set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit);
543 input_dev->keycodesize = 0;
544 input_dev->keycodemax = 0;
545 input_dev->id.bustype = BUS_USB;
546 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
547 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
548 input_dev->id.version = 1;
549 input_dev->dev.parent = &dev->udev->dev;
550
551 err = input_register_device(input_dev);
552 if (err) {
553 em28xx_errdev("input_register_device failed\n");
554 input_free_device(input_dev);
555 return;
556 }
557
558 dev->sbutton_input_dev = input_dev;
559 schedule_delayed_work(&dev->sbutton_query_work,
560 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
561 return;
562
563}
564
565void em28xx_deregister_snapshot_button(struct em28xx *dev)
566{
567 if (dev->sbutton_input_dev != NULL) {
568 em28xx_info("Deregistering snapshot button\n");
Tejun Heoafe2c512010-12-14 16:21:17 +0100569 cancel_delayed_work_sync(&dev->sbutton_query_work);
Devin Heitmuellera9fc52b2008-06-28 08:57:06 -0300570 input_unregister_device(dev->sbutton_input_dev);
571 dev->sbutton_input_dev = NULL;
572 }
573 return;
574}