blob: 07f6030d7455801848e034c46f49d4987061afdc [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;
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -030060
61 u32 scancode;
Devin Heitmueller4b922532008-11-13 03:15:55 -030062};
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 Chehab105e3682012-12-15 08:29:11 -030075 u64 rc_type;
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
Ezequiel García769af212012-03-26 09:13:34 -030084static int 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
Ezequiel García769af212012-03-26 09:13:34 -0300112static int 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
Ezequiel García769af212012-03-26 09:13:34 -0300161static int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
Mauro Carvalho Chehabc8793b02008-01-13 15:42:17 -0300162 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
Ezequiel García769af212012-03-26 09:13:34 -0300183static int em28xx_get_key_winfast_usbii_deluxe(struct IR_i2c *ir, u32 *ir_key,
184 u32 *ir_raw)
Magnus Almca39d842009-11-13 05:48:24 -0300185{
186 unsigned char subaddr, keydetect, key;
187
188 struct i2c_msg msg[] = { { .addr = ir->c->addr, .flags = 0, .buf = &subaddr, .len = 1},
189
190 { .addr = ir->c->addr, .flags = I2C_M_RD, .buf = &keydetect, .len = 1} };
191
192 subaddr = 0x10;
193 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
194 i2cdprintk("read error\n");
195 return -EIO;
196 }
197 if (keydetect == 0x00)
198 return 0;
199
200 subaddr = 0x00;
201 msg[1].buf = &key;
202 if (2 != i2c_transfer(ir->c->adapter, msg, 2)) {
203 i2cdprintk("read error\n");
204 return -EIO;
205 }
206 if (key == 0x00)
207 return 0;
208
209 *ir_key = key;
210 *ir_raw = key;
211 return 1;
212}
213
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300214/**********************************************************
215 Poll based get keycode functions
216 **********************************************************/
217
Devin Heitmueller4b922532008-11-13 03:15:55 -0300218/* This is for the em2860/em2880 */
219static int default_polling_getkey(struct em28xx_IR *ir,
220 struct em28xx_ir_poll_result *poll_result)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300221{
222 struct em28xx *dev = ir->dev;
223 int rc;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300224 u8 msg[3] = { 0, 0, 0 };
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300225
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300226 /* Read key toggle, brand, and key code
227 on registers 0x45, 0x46 and 0x47
228 */
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300229 rc = dev->em28xx_read_reg_req_len(dev, 0, EM28XX_R45_IR,
Mauro Carvalho Chehab0a6b8a82008-11-12 18:46:01 -0300230 msg, sizeof(msg));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300231 if (rc < 0)
232 return rc;
233
Devin Heitmueller4b922532008-11-13 03:15:55 -0300234 /* Infrared toggle (Reg 0x45[7]) */
235 poll_result->toggle_bit = (msg[0] >> 7);
236
237 /* Infrared read count (Reg 0x45[6:0] */
238 poll_result->read_count = (msg[0] & 0x7f);
239
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300240 /* Remote Control Address/Data (Regs 0x46/0x47) */
241 poll_result->scancode = msg[1] << 8 | msg[2];
Devin Heitmueller4b922532008-11-13 03:15:55 -0300242
243 return 0;
244}
245
246static int em2874_polling_getkey(struct em28xx_IR *ir,
247 struct em28xx_ir_poll_result *poll_result)
248{
249 struct em28xx *dev = ir->dev;
250 int rc;
251 u8 msg[5] = { 0, 0, 0, 0, 0 };
252
253 /* Read key toggle, brand, and key code
254 on registers 0x51-55
255 */
256 rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
257 msg, sizeof(msg));
258 if (rc < 0)
259 return rc;
260
261 /* Infrared toggle (Reg 0x51[7]) */
262 poll_result->toggle_bit = (msg[0] >> 7);
263
264 /* Infrared read count (Reg 0x51[6:0] */
265 poll_result->read_count = (msg[0] & 0x7f);
266
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300267 /*
268 * Remote Control Address (Reg 0x52)
269 * Remote Control Data (Reg 0x53-0x55)
270 */
271 switch (ir->rc_type) {
272 case RC_BIT_RC5:
273 poll_result->scancode = msg[1] << 8 | msg[2];
274 break;
275 case RC_BIT_NEC:
276 if ((msg[3] ^ msg[4]) != 0xff) /* 32 bits NEC */
277 poll_result->scancode = (msg[1] << 24) |
278 (msg[2] << 16) |
279 (msg[3] << 8) |
280 msg[4];
281 else if ((msg[1] ^ msg[2]) != 0xff) /* 24 bits NEC */
282 poll_result->scancode = (msg[1] << 16) |
283 (msg[2] << 8) |
284 msg[3];
285 else /* Normal NEC */
286 poll_result->scancode = msg[1] << 8 | msg[3];
287 break;
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300288 case RC_BIT_RC6_0:
289 poll_result->scancode = msg[1] << 8 | msg[2];
290 break;
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300291 default:
292 poll_result->scancode = (msg[1] << 24) | (msg[2] << 16) |
293 (msg[3] << 8) | msg[4];
294 break;
295 }
Devin Heitmueller4b922532008-11-13 03:15:55 -0300296
297 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300298}
299
300/**********************************************************
301 Polling code for em28xx
302 **********************************************************/
303
304static void em28xx_ir_handle_key(struct em28xx_IR *ir)
305{
Devin Heitmueller4b922532008-11-13 03:15:55 -0300306 int result;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300307 struct em28xx_ir_poll_result poll_result;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300308
Devin Heitmueller4b922532008-11-13 03:15:55 -0300309 /* read the registers containing the IR status */
310 result = ir->get_key(ir, &poll_result);
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300311 if (unlikely(result < 0)) {
Devin Heitmueller4b922532008-11-13 03:15:55 -0300312 dprintk("ir->get_key() failed %d\n", result);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300313 return;
Devin Heitmueller4b922532008-11-13 03:15:55 -0300314 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300315
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300316 if (unlikely(poll_result.read_count != ir->last_readcount)) {
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300317 dprintk("%s: toggle: %d, count: %d, key 0x%04x\n", __func__,
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300318 poll_result.toggle_bit, poll_result.read_count,
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300319 poll_result.scancode);
David Härdemana4695852010-06-07 16:32:23 -0300320 if (ir->full_code)
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300321 rc_keydown(ir->rc,
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300322 poll_result.scancode,
David Härdemana4695852010-06-07 16:32:23 -0300323 poll_result.toggle_bit);
324 else
Mauro Carvalho Chehabca866742010-11-17 13:53:11 -0300325 rc_keydown(ir->rc,
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300326 poll_result.scancode & 0xff,
David Härdemana4695852010-06-07 16:32:23 -0300327 poll_result.toggle_bit);
David Härdemana4695852010-06-07 16:32:23 -0300328
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200329 if (ir->dev->chip_id == CHIP_ID_EM2874 ||
330 ir->dev->chip_id == CHIP_ID_EM2884)
Mauro Carvalho Chehab603044d2010-06-27 08:32:11 -0300331 /* The em2874 clears the readcount field every time the
332 register is read. The em2860/2880 datasheet says that it
333 is supposed to clear the readcount, but it doesn't. So with
334 the em2874, we are looking for a non-zero read count as
335 opposed to a readcount that is incrementing */
336 ir->last_readcount = 0;
337 else
338 ir->last_readcount = poll_result.read_count;
339 }
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300340}
341
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300342static void em28xx_ir_work(struct work_struct *work)
343{
Jean Delvaref263bac2009-03-07 07:43:01 -0300344 struct em28xx_IR *ir = container_of(work, struct em28xx_IR, work.work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300345
346 em28xx_ir_handle_key(ir);
Jean Delvaref263bac2009-03-07 07:43:01 -0300347 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300348}
349
David Härdemand8b4b582010-10-29 16:08:23 -0300350static int em28xx_ir_start(struct rc_dev *rc)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300351{
David Härdemand8b4b582010-10-29 16:08:23 -0300352 struct em28xx_IR *ir = rc->priv;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300353
Jean Delvaref263bac2009-03-07 07:43:01 -0300354 INIT_DELAYED_WORK(&ir->work, em28xx_ir_work);
355 schedule_delayed_work(&ir->work, 0);
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300356
357 return 0;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300358}
359
David Härdemand8b4b582010-10-29 16:08:23 -0300360static void em28xx_ir_stop(struct rc_dev *rc)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300361{
David Härdemand8b4b582010-10-29 16:08:23 -0300362 struct em28xx_IR *ir = rc->priv;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300363
Jean Delvaref263bac2009-03-07 07:43:01 -0300364 cancel_delayed_work_sync(&ir->work);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300365}
366
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300367static int em2860_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300368{
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300369 struct em28xx_IR *ir = rc_dev->priv;
370 struct em28xx *dev = ir->dev;
371
372 /* Adjust xclk based on IR table for RC5/NEC tables */
373 if (*rc_type & RC_BIT_RC5) {
374 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
375 ir->full_code = 1;
376 *rc_type = RC_BIT_RC5;
377 } else if (*rc_type & RC_BIT_NEC) {
378 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
379 ir->full_code = 1;
380 *rc_type = RC_BIT_NEC;
381 } else if (*rc_type & RC_BIT_UNKNOWN) {
382 *rc_type = RC_BIT_UNKNOWN;
383 } else {
384 *rc_type = ir->rc_type;
385 return -EINVAL;
386 }
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300387 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
388 EM28XX_XCLK_IR_RC5_MODE);
389
390 ir->rc_type = *rc_type;
391
392 return 0;
393}
394
395static int em2874_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type)
396{
David Härdemand8b4b582010-10-29 16:08:23 -0300397 struct em28xx_IR *ir = rc_dev->priv;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300398 struct em28xx *dev = ir->dev;
399 u8 ir_config = EM2874_IR_RC5;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300400
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300401 /* Adjust xclk and set type based on IR table for RC5/NEC/RC6 tables */
David Härdemanc003ab12012-10-11 19:11:54 -0300402 if (*rc_type & RC_BIT_RC5) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300403 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
404 ir->full_code = 1;
David Härdemanc003ab12012-10-11 19:11:54 -0300405 *rc_type = RC_BIT_RC5;
406 } else if (*rc_type & RC_BIT_NEC) {
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300407 dev->board.xclk &= ~EM28XX_XCLK_IR_RC5_MODE;
Mauro Carvalho Chehab105e3682012-12-15 08:29:11 -0300408 ir_config = EM2874_IR_NEC | EM2874_IR_NEC_NO_PARITY;
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300409 ir->full_code = 1;
David Härdemanc003ab12012-10-11 19:11:54 -0300410 *rc_type = RC_BIT_NEC;
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300411 } else if (*rc_type & RC_BIT_RC6_0) {
412 dev->board.xclk |= EM28XX_XCLK_IR_RC5_MODE;
413 ir_config = EM2874_IR_RC6_MODE_0;
414 ir->full_code = 1;
415 *rc_type = RC_BIT_RC6_0;
416 } else if (*rc_type & RC_BIT_UNKNOWN) {
417 *rc_type = RC_BIT_UNKNOWN;
418 } else {
419 *rc_type = ir->rc_type;
420 return -EINVAL;
421 }
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300422 em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1);
Mauro Carvalho Chehab1bad4292009-12-05 08:27:49 -0300423 em28xx_write_reg_bits(dev, EM28XX_R0F_XCLK, dev->board.xclk,
424 EM28XX_XCLK_IR_RC5_MODE);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300425
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300426 ir->rc_type = *rc_type;
427
428 return 0;
429}
430static int em28xx_ir_change_protocol(struct rc_dev *rc_dev, u64 *rc_type)
431{
432 struct em28xx_IR *ir = rc_dev->priv;
433 struct em28xx *dev = ir->dev;
434
Devin Heitmueller4b922532008-11-13 03:15:55 -0300435 /* Setup the proper handler based on the chip */
436 switch (dev->chip_id) {
437 case CHIP_ID_EM2860:
438 case CHIP_ID_EM2883:
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300439 return em2860_ir_change_protocol(rc_dev, rc_type);
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200440 case CHIP_ID_EM2884:
Devin Heitmueller4b922532008-11-13 03:15:55 -0300441 case CHIP_ID_EM2874:
Antti Palosaaria24ec442011-05-25 16:56:37 -0300442 case CHIP_ID_EM28174:
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300443 return em2874_ir_change_protocol(rc_dev, rc_type);
Devin Heitmueller4b922532008-11-13 03:15:55 -0300444 default:
Mauro Carvalho Chehab20ae9742011-11-20 12:23:54 -0200445 printk("Unrecognized em28xx chip id 0x%02x: IR not supported\n",
446 dev->chip_id);
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300447 return -EINVAL;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300448 }
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300449}
450
Ezequiel García769af212012-03-26 09:13:34 -0300451static void em28xx_register_i2c_ir(struct em28xx *dev)
Ezequiel García9d9f4792012-03-26 09:13:33 -0300452{
453 /* Leadtek winfast tv USBII deluxe can find a non working IR-device */
454 /* at address 0x18, so if that address is needed for another board in */
455 /* the future, please put it after 0x1f. */
456 struct i2c_board_info info;
457 const unsigned short addr_list[] = {
458 0x1f, 0x30, 0x47, I2C_CLIENT_END
459 };
460
461 memset(&info, 0, sizeof(struct i2c_board_info));
462 memset(&dev->init_data, 0, sizeof(dev->init_data));
463 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
464
465 /* detect & configure */
466 switch (dev->model) {
467 case EM2800_BOARD_TERRATEC_CINERGY_200:
468 case EM2820_BOARD_TERRATEC_CINERGY_250:
469 dev->init_data.ir_codes = RC_MAP_EM_TERRATEC;
470 dev->init_data.get_key = em28xx_get_key_terratec;
Mauro Carvalho Chehabd40580e2013-01-04 17:37:26 -0300471 dev->init_data.name = "Terratec Cinergy 200/250";
Ezequiel García9d9f4792012-03-26 09:13:33 -0300472 break;
473 case EM2820_BOARD_PINNACLE_USB_2:
474 dev->init_data.ir_codes = RC_MAP_PINNACLE_GREY;
475 dev->init_data.get_key = em28xx_get_key_pinnacle_usb_grey;
Mauro Carvalho Chehabd40580e2013-01-04 17:37:26 -0300476 dev->init_data.name = "Pinnacle USB2";
Ezequiel García9d9f4792012-03-26 09:13:33 -0300477 break;
478 case EM2820_BOARD_HAUPPAUGE_WINTV_USB_2:
479 dev->init_data.ir_codes = RC_MAP_HAUPPAUGE;
480 dev->init_data.get_key = em28xx_get_key_em_haup;
Mauro Carvalho Chehabd40580e2013-01-04 17:37:26 -0300481 dev->init_data.name = "WinTV USB2";
Mauro Carvalho Chehab3ac693c2013-01-04 18:01:59 -0300482 dev->init_data.type = RC_BIT_RC5;
Ezequiel García9d9f4792012-03-26 09:13:33 -0300483 break;
484 case EM2820_BOARD_LEADTEK_WINFAST_USBII_DELUXE:
485 dev->init_data.ir_codes = RC_MAP_WINFAST_USBII_DELUXE;
486 dev->init_data.get_key = em28xx_get_key_winfast_usbii_deluxe;
Mauro Carvalho Chehabd40580e2013-01-04 17:37:26 -0300487 dev->init_data.name = "Winfast TV USBII Deluxe";
Ezequiel García9d9f4792012-03-26 09:13:33 -0300488 break;
489 }
490
491 if (dev->init_data.name)
492 info.platform_data = &dev->init_data;
493 i2c_new_probed_device(&dev->i2c_adap, &info, addr_list, NULL);
494}
495
Ezequiel García769af212012-03-26 09:13:34 -0300496/**********************************************************
497 Handle Webcam snapshot button
498 **********************************************************/
499
500static void em28xx_query_sbutton(struct work_struct *work)
501{
502 /* Poll the register and see if the button is depressed */
503 struct em28xx *dev =
504 container_of(work, struct em28xx, sbutton_query_work.work);
505 int ret;
506
507 ret = em28xx_read_reg(dev, EM28XX_R0C_USBSUSP);
508
509 if (ret & EM28XX_R0C_USBSUSP_SNAPSHOT) {
510 u8 cleared;
511 /* Button is depressed, clear the register */
512 cleared = ((u8) ret) & ~EM28XX_R0C_USBSUSP_SNAPSHOT;
513 em28xx_write_regs(dev, EM28XX_R0C_USBSUSP, &cleared, 1);
514
515 /* Not emulate the keypress */
516 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
517 1);
518 /* Now unpress the key */
519 input_report_key(dev->sbutton_input_dev, EM28XX_SNAPSHOT_KEY,
520 0);
521 }
522
523 /* Schedule next poll */
524 schedule_delayed_work(&dev->sbutton_query_work,
525 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
526}
527
528static void em28xx_register_snapshot_button(struct em28xx *dev)
529{
530 struct input_dev *input_dev;
531 int err;
532
533 em28xx_info("Registering snapshot button...\n");
534 input_dev = input_allocate_device();
535 if (!input_dev) {
536 em28xx_errdev("input_allocate_device failed\n");
537 return;
538 }
539
540 usb_make_path(dev->udev, dev->snapshot_button_path,
541 sizeof(dev->snapshot_button_path));
542 strlcat(dev->snapshot_button_path, "/sbutton",
543 sizeof(dev->snapshot_button_path));
544 INIT_DELAYED_WORK(&dev->sbutton_query_work, em28xx_query_sbutton);
545
546 input_dev->name = "em28xx snapshot button";
547 input_dev->phys = dev->snapshot_button_path;
548 input_dev->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REP);
549 set_bit(EM28XX_SNAPSHOT_KEY, input_dev->keybit);
550 input_dev->keycodesize = 0;
551 input_dev->keycodemax = 0;
552 input_dev->id.bustype = BUS_USB;
553 input_dev->id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
554 input_dev->id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
555 input_dev->id.version = 1;
556 input_dev->dev.parent = &dev->udev->dev;
557
558 err = input_register_device(input_dev);
559 if (err) {
560 em28xx_errdev("input_register_device failed\n");
561 input_free_device(input_dev);
562 return;
563 }
564
565 dev->sbutton_input_dev = input_dev;
566 schedule_delayed_work(&dev->sbutton_query_work,
567 msecs_to_jiffies(EM28XX_SBUTTON_QUERY_INTERVAL));
568 return;
569
570}
571
572static void em28xx_deregister_snapshot_button(struct em28xx *dev)
573{
574 if (dev->sbutton_input_dev != NULL) {
575 em28xx_info("Deregistering snapshot button\n");
576 cancel_delayed_work_sync(&dev->sbutton_query_work);
577 input_unregister_device(dev->sbutton_input_dev);
578 dev->sbutton_input_dev = NULL;
579 }
580 return;
581}
582
Ezequiel Garcíaf4d4e762012-03-26 09:13:35 -0300583static int em28xx_ir_init(struct em28xx *dev)
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300584{
585 struct em28xx_IR *ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300586 struct rc_dev *rc;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300587 int err = -ENOMEM;
David Härdemanc003ab12012-10-11 19:11:54 -0300588 u64 rc_type;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300589
Mauro Carvalho Chehab8303dc92013-01-04 17:27:47 -0300590 if (dev->board.has_snapshot_button)
591 em28xx_register_snapshot_button(dev);
592
593 if (dev->board.has_ir_i2c) {
594 em28xx_register_i2c_ir(dev);
595#if defined(CONFIG_MODULES) && defined(MODULE)
596 request_module("ir-kbd-i2c");
597#endif
598 return 0;
599 }
600
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300601 if (dev->board.ir_codes == NULL) {
602 /* No remote control support */
Martin Blumenstinglb83f6712012-05-30 15:47:40 -0300603 em28xx_warn("Remote control support is not available for "
604 "this card.\n");
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300605 return 0;
606 }
607
608 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300609 rc = rc_allocate_device();
610 if (!ir || !rc)
Frank Schaefer2f5741a2012-12-22 10:13:38 -0300611 goto error;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300612
613 /* record handles to ourself */
614 ir->dev = dev;
615 dev->ir = ir;
David Härdemand8b4b582010-10-29 16:08:23 -0300616 ir->rc = rc;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300617
618 /*
619 * em2874 supports more protocols. For now, let's just announce
620 * the two protocols that were already tested
621 */
David Härdemanc003ab12012-10-11 19:11:54 -0300622 rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC;
David Härdemand8b4b582010-10-29 16:08:23 -0300623 rc->priv = ir;
624 rc->change_protocol = em28xx_ir_change_protocol;
625 rc->open = em28xx_ir_start;
626 rc->close = em28xx_ir_stop;
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300627
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300628 switch (dev->chip_id) {
629 case CHIP_ID_EM2860:
630 case CHIP_ID_EM2883:
631 rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC;
Frank Schaefer6ea887e2012-12-27 19:02:47 -0300632 ir->get_key = default_polling_getkey;
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300633 break;
634 case CHIP_ID_EM2884:
635 case CHIP_ID_EM2874:
636 case CHIP_ID_EM28174:
Frank Schaefer6ea887e2012-12-27 19:02:47 -0300637 ir->get_key = em2874_polling_getkey;
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300638 rc->allowed_protos = RC_BIT_RC5 | RC_BIT_NEC | RC_BIT_RC6_0;
639 break;
640 default:
641 err = -ENODEV;
Frank Schaefer2f5741a2012-12-22 10:13:38 -0300642 goto error;
Mauro Carvalho Chehab0dae8832012-12-15 08:29:12 -0300643 }
644
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300645 /* By default, keep protocol field untouched */
David Härdemanc003ab12012-10-11 19:11:54 -0300646 rc_type = RC_BIT_UNKNOWN;
647 err = em28xx_ir_change_protocol(rc, &rc_type);
Mauro Carvalho Chehabc373cab2010-04-07 22:57:04 -0300648 if (err)
Frank Schaefer2f5741a2012-12-22 10:13:38 -0300649 goto error;
Mauro Carvalho Chehab950b0f52009-12-14 02:54:22 -0300650
Devin Heitmueller4b922532008-11-13 03:15:55 -0300651 /* This is how often we ask the chip for IR information */
652 ir->polling = 100; /* ms */
653
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300654 /* init input device */
655 snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
656 dev->name);
657
658 usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
659 strlcat(ir->phys, "/input0", sizeof(ir->phys));
660
David Härdemand8b4b582010-10-29 16:08:23 -0300661 rc->input_name = ir->name;
662 rc->input_phys = ir->phys;
663 rc->input_id.bustype = BUS_USB;
664 rc->input_id.version = 1;
665 rc->input_id.vendor = le16_to_cpu(dev->udev->descriptor.idVendor);
666 rc->input_id.product = le16_to_cpu(dev->udev->descriptor.idProduct);
667 rc->dev.parent = &dev->udev->dev;
668 rc->map_name = dev->board.ir_codes;
669 rc->driver_name = MODULE_NAME;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300670
671 /* all done */
David Härdemand8b4b582010-10-29 16:08:23 -0300672 err = rc_register_device(rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300673 if (err)
Frank Schaefer2f5741a2012-12-22 10:13:38 -0300674 goto error;
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300675
676 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300677
Frank Schaefer2f5741a2012-12-22 10:13:38 -0300678error:
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300679 dev->ir = NULL;
David Härdemand8b4b582010-10-29 16:08:23 -0300680 rc_free_device(rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300681 kfree(ir);
682 return err;
683}
684
Ezequiel Garcíaf4d4e762012-03-26 09:13:35 -0300685static int em28xx_ir_fini(struct em28xx *dev)
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300686{
687 struct em28xx_IR *ir = dev->ir;
688
Ezequiel García2fd6f8d2012-03-26 09:13:32 -0300689 em28xx_deregister_snapshot_button(dev);
690
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300691 /* skip detach on non attached boards */
692 if (!ir)
693 return 0;
694
Mauro Carvalho Chehab6d514772011-07-29 02:26:59 -0300695 if (ir->rc)
696 rc_unregister_device(ir->rc);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300697
698 /* done */
Mauro Carvalho Chehab6d514772011-07-29 02:26:59 -0300699 kfree(ir);
Mauro Carvalho Chehaba924a492008-11-12 08:41:29 -0300700 dev->ir = NULL;
701 return 0;
702}
703
Ezequiel Garcíaf4d4e762012-03-26 09:13:35 -0300704static struct em28xx_ops rc_ops = {
705 .id = EM28XX_RC,
706 .name = "Em28xx Input Extension",
707 .init = em28xx_ir_init,
708 .fini = em28xx_ir_fini,
709};
710
711static int __init em28xx_rc_register(void)
712{
713 return em28xx_register_extension(&rc_ops);
714}
715
716static void __exit em28xx_rc_unregister(void)
717{
718 em28xx_unregister_extension(&rc_ops);
719}
720
721MODULE_LICENSE("GPL");
722MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
723MODULE_DESCRIPTION("Em28xx Input driver");
724
725module_init(em28xx_rc_register);
726module_exit(em28xx_rc_unregister);