blob: 0fded7511eafff4110c265ad977a3da8b920dc96 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * handle saa7134 IR remotes via linux kernel input layer.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 */
20
21#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/interrupt.h>
25#include <linux/input.h>
26
27#include "saa7134-reg.h"
28#include "saa7134.h"
29
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030030static unsigned int disable_ir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031module_param(disable_ir, int, 0444);
32MODULE_PARM_DESC(disable_ir,"disable infrared remote support");
33
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030034static unsigned int ir_debug;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035module_param(ir_debug, int, 0644);
36MODULE_PARM_DESC(ir_debug,"enable debug messages [IR]");
37
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030038static int pinnacle_remote;
Sylvain Pascheb93eedb2006-03-25 23:14:42 -030039module_param(pinnacle_remote, int, 0644); /* Choose Pinnacle PCTV remote */
40MODULE_PARM_DESC(pinnacle_remote, "Specify Pinnacle PCTV remote: 0=coloured, 1=grey (defaults to 0)");
41
Adrian Bunkc408a6f2006-12-28 12:47:47 -030042static int ir_rc5_remote_gap = 885;
Hermann Pitton91607232006-12-07 21:45:28 -030043module_param(ir_rc5_remote_gap, int, 0644);
Adrian Bunkc408a6f2006-12-28 12:47:47 -030044static int ir_rc5_key_timeout = 115;
Hermann Pitton91607232006-12-07 21:45:28 -030045module_param(ir_rc5_key_timeout, int, 0644);
46
Pedro0938e312007-10-17 17:58:40 -030047static int repeat_delay = 500;
48module_param(repeat_delay, int, 0644);
49MODULE_PARM_DESC(repeat_delay, "delay before key repeat started");
50static int repeat_period = 33;
51module_param(repeat_period, int, 0644);
Joe Perchesac9bb7f2007-11-20 09:00:35 -030052MODULE_PARM_DESC(repeat_period, "repeat period between "
Pedro0938e312007-10-17 17:58:40 -030053 "keypresses when key is down");
54
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -030055static unsigned int disable_other_ir;
56module_param(disable_other_ir, int, 0644);
57MODULE_PARM_DESC(disable_other_ir, "disable full codes of "
58 "alternative remotes from other manufacturers");
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define dprintk(fmt, arg...) if (ir_debug) \
61 printk(KERN_DEBUG "%s/ir: " fmt, dev->name , ## arg)
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -080062#define i2cdprintk(fmt, arg...) if (ir_debug) \
63 printk(KERN_DEBUG "%s/ir: " fmt, ir->c.name , ## arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -030065/* Helper functions for RC5 and NEC decoding at GPIO16 or GPIO18 */
Hermann Pitton91607232006-12-07 21:45:28 -030066static int saa7134_rc5_irq(struct saa7134_dev *dev);
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -030067static int saa7134_nec_irq(struct saa7134_dev *dev);
68static void nec_task(unsigned long data);
69static void saa7134_nec_timer(unsigned long data);
Hermann Pitton91607232006-12-07 21:45:28 -030070
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -080071/* -------------------- GPIO generic keycode builder -------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static int build_key(struct saa7134_dev *dev)
74{
Hermann Pitton91607232006-12-07 21:45:28 -030075 struct card_ir *ir = dev->remote;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 u32 gpio, data;
77
Pedro0938e312007-10-17 17:58:40 -030078 /* here comes the additional handshake steps for some cards */
79 switch (dev->board) {
80 case SAA7134_BOARD_GOTVIEW_7135:
81 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x80);
82 saa_clearb(SAA7134_GPIO_GPSTATUS1, 0x80);
83 break;
84 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 /* rising SAA7134_GPIO_GPRESCAN reads the status */
86 saa_clearb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);
87 saa_setb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);
88
89 gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080090 if (ir->polling) {
91 if (ir->last_gpio == gpio)
92 return 0;
93 ir->last_gpio = gpio;
94 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -080096 data = ir_extract_bits(gpio, ir->mask_keycode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 dprintk("build_key gpio=0x%x mask=0x%x data=%d\n",
98 gpio, ir->mask_keycode, data);
99
Peter Missel0602fbb2006-01-09 18:21:23 -0200100 if (ir->polling) {
101 if ((ir->mask_keydown && (0 != (gpio & ir->mask_keydown))) ||
102 (ir->mask_keyup && (0 == (gpio & ir->mask_keyup)))) {
103 ir_input_keydown(ir->dev, &ir->ir, data, data);
104 } else {
105 ir_input_nokey(ir->dev, &ir->ir);
106 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
Peter Missel0602fbb2006-01-09 18:21:23 -0200108 else { /* IRQ driven mode - handle key press and release in one go */
109 if ((ir->mask_keydown && (0 != (gpio & ir->mask_keydown))) ||
110 (ir->mask_keyup && (0 == (gpio & ir->mask_keyup)))) {
111 ir_input_keydown(ir->dev, &ir->ir, data, data);
112 ir_input_nokey(ir->dev, &ir->ir);
113 }
114 }
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return 0;
117}
118
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800119/* --------------------- Chip specific I2C key builders ----------------- */
120
121static int get_key_purpletv(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
122{
123 unsigned char b;
124
125 /* poll IR chip */
126 if (1 != i2c_master_recv(&ir->c,&b,1)) {
127 i2cdprintk("read error\n");
128 return -EIO;
129 }
130
131 /* no button press */
132 if (b==0)
133 return 0;
134
135 /* repeating */
136 if (b & 0x80)
137 return 1;
138
139 *ir_key = b;
140 *ir_raw = b;
141 return 1;
142}
143
Thomas Genty177aaaf2006-11-29 21:57:24 -0300144static int get_key_hvr1110(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
145{
146 unsigned char buf[5], cod4, code3, code4;
147
148 /* poll IR chip */
149 if (5 != i2c_master_recv(&ir->c,buf,5))
150 return -EIO;
151
152 cod4 = buf[4];
153 code4 = (cod4 >> 2);
154 code3 = buf[3];
155 if (code3 == 0)
156 /* no key pressed */
157 return 0;
158
159 /* return key */
160 *ir_key = code4;
161 *ir_raw = code4;
162 return 1;
163}
164
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -0300165
166static int get_key_beholdm6xx(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
167{
168 unsigned char data[12];
169 u32 gpio;
170
171 struct saa7134_dev *dev = ir->c.adapter->algo_data;
172
173 /* rising SAA7134_GPIO_GPRESCAN reads the status */
174 saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
175 saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
176
177 gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
178
Mauro Carvalho Chehab616f8872008-01-07 05:18:36 -0300179 if (0x400000 & ~gpio)
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -0300180 return 0; /* No button press */
181
182 ir->c.addr = 0x5a >> 1;
183
184 if (12 != i2c_master_recv(&ir->c, data, 12)) {
185 i2cdprintk("read error\n");
186 return -EIO;
187 }
188 /* IR of this card normally decode signals NEC-standard from
189 * - Sven IHOO MT 5.1R remote. xxyye718
190 * - Sven DVD HD-10xx remote. xxyyf708
191 * - BBK ...
192 * - mayby others
193 * So, skip not our, if disable full codes mode.
194 */
195 if (data[10] != 0x6b && data[11] != 0x86 && disable_other_ir)
196 return 0;
197
198 *ir_key = data[9];
199 *ir_raw = data[9];
200
201 return 1;
202}
203
Mauro Carvalho Chehab1c22dad2008-07-17 22:31:29 -0300204/* Common (grey or coloured) pinnacle PCTV remote handling
205 *
206 */
207static int get_key_pinnacle(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw,
208 int parity_offset, int marker, int code_modulo)
209{
210 unsigned char b[4];
211 unsigned int start = 0,parity = 0,code = 0;
212
213 /* poll IR chip */
214 if (4 != i2c_master_recv(&ir->c, b, 4)) {
215 i2cdprintk("read error\n");
216 return -EIO;
217 }
218
219 for (start = 0; start < ARRAY_SIZE(b); start++) {
220 if (b[start] == marker) {
221 code=b[(start+parity_offset + 1) % 4];
222 parity=b[(start+parity_offset) % 4];
223 }
224 }
225
226 /* Empty Request */
227 if (parity == 0)
228 return 0;
229
230 /* Repeating... */
231 if (ir->old == parity)
232 return 0;
233
234 ir->old = parity;
235
236 /* drop special codes when a key is held down a long time for the grey controller
237 In this case, the second bit of the code is asserted */
238 if (marker == 0xfe && (code & 0x40))
239 return 0;
240
241 code %= code_modulo;
242
243 *ir_raw = code;
244 *ir_key = code;
245
246 i2cdprintk("Pinnacle PCTV key %02x\n", code);
247
248 return 1;
249}
250
251/* The grey pinnacle PCTV remote
252 *
253 * There are one issue with this remote:
254 * - I2c packet does not change when the same key is pressed quickly. The workaround
255 * is to hold down each key for about half a second, so that another code is generated
256 * in the i2c packet, and the function can distinguish key presses.
257 *
258 * Sylvain Pasche <sylvain.pasche@gmail.com>
259 */
260static int get_key_pinnacle_grey(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
261{
262
263 return get_key_pinnacle(ir, ir_key, ir_raw, 1, 0xfe, 0xff);
264}
265
266
267/* The new pinnacle PCTV remote (with the colored buttons)
268 *
269 * Ricardo Cerqueira <v4l@cerqueira.org>
270 */
271static int get_key_pinnacle_color(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
272{
273 /* code_modulo parameter (0x88) is used to reduce code value to fit inside IR_KEYTAB_SIZE
274 *
275 * this is the only value that results in 42 unique
276 * codes < 128
277 */
278
279 return get_key_pinnacle(ir, ir_key, ir_raw, 2, 0x80, 0x88);
280}
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282void saa7134_input_irq(struct saa7134_dev *dev)
283{
Hermann Pitton91607232006-12-07 21:45:28 -0300284 struct card_ir *ir = dev->remote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300286 if (ir->nec_gpio) {
287 saa7134_nec_irq(dev);
288 } else if (!ir->polling && !ir->rc5_gpio) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 build_key(dev);
Hermann Pitton91607232006-12-07 21:45:28 -0300290 } else if (ir->rc5_gpio) {
291 saa7134_rc5_irq(dev);
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295static void saa7134_input_timer(unsigned long data)
296{
Dmitry Torokhovb4ba7882007-05-21 11:41:02 -0300297 struct saa7134_dev *dev = (struct saa7134_dev *)data;
Hermann Pitton91607232006-12-07 21:45:28 -0300298 struct card_ir *ir = dev->remote;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 build_key(dev);
Dmitry Torokhovb4ba7882007-05-21 11:41:02 -0300301 mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Maxim Levitskyc4584732007-10-12 00:57:15 -0300304void saa7134_ir_start(struct saa7134_dev *dev, struct card_ir *ir)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300305{
306 if (ir->polling) {
Dmitry Torokhovb4ba7882007-05-21 11:41:02 -0300307 setup_timer(&ir->timer, saa7134_input_timer,
308 (unsigned long)dev);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300309 ir->timer.expires = jiffies + HZ;
310 add_timer(&ir->timer);
Hermann Pitton91607232006-12-07 21:45:28 -0300311 } else if (ir->rc5_gpio) {
312 /* set timer_end for code completion */
313 init_timer(&ir->timer_end);
314 ir->timer_end.function = ir_rc5_timer_end;
315 ir->timer_end.data = (unsigned long)ir;
316 init_timer(&ir->timer_keyup);
317 ir->timer_keyup.function = ir_rc5_timer_keyup;
318 ir->timer_keyup.data = (unsigned long)ir;
319 ir->shift_by = 2;
320 ir->start = 0x2;
321 ir->addr = 0x17;
322 ir->rc5_key_timeout = ir_rc5_key_timeout;
323 ir->rc5_remote_gap = ir_rc5_remote_gap;
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300324 } else if (ir->nec_gpio) {
325 setup_timer(&ir->timer_keyup, saa7134_nec_timer,
326 (unsigned long)dev);
327 tasklet_init(&ir->tlet, nec_task, (unsigned long)dev);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300328 }
329}
330
Maxim Levitskyc4584732007-10-12 00:57:15 -0300331void saa7134_ir_stop(struct saa7134_dev *dev)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300332{
333 if (dev->remote->polling)
334 del_timer_sync(&dev->remote->timer);
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337int saa7134_input_init1(struct saa7134_dev *dev)
338{
Hermann Pitton91607232006-12-07 21:45:28 -0300339 struct card_ir *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500340 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 IR_KEYTAB_TYPE *ir_codes = NULL;
342 u32 mask_keycode = 0;
343 u32 mask_keydown = 0;
344 u32 mask_keyup = 0;
345 int polling = 0;
Hermann Pitton91607232006-12-07 21:45:28 -0300346 int rc5_gpio = 0;
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300347 int nec_gpio = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 int ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300349 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Ricardo Cerqueiracb2444d2005-11-08 21:38:47 -0800351 if (dev->has_remote != SAA7134_REMOTE_GPIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 return -ENODEV;
353 if (disable_ir)
354 return -ENODEV;
355
356 /* detect & configure */
357 switch (dev->board) {
358 case SAA7134_BOARD_FLYVIDEO2000:
359 case SAA7134_BOARD_FLYVIDEO3000:
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800360 case SAA7134_BOARD_FLYTVPLATINUM_FM:
Arnaud Patard6af90ab2005-11-08 21:36:55 -0800361 case SAA7134_BOARD_FLYTVPLATINUM_MINI2:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200362 ir_codes = ir_codes_flyvideo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 mask_keycode = 0xEC00000;
364 mask_keydown = 0x0040000;
365 break;
366 case SAA7134_BOARD_CINERGY400:
367 case SAA7134_BOARD_CINERGY600:
368 case SAA7134_BOARD_CINERGY600_MK3:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200369 ir_codes = ir_codes_cinergy;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 mask_keycode = 0x00003f;
371 mask_keyup = 0x040000;
372 break;
373 case SAA7134_BOARD_ECS_TVP3XP:
374 case SAA7134_BOARD_ECS_TVP3XP_4CB5:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200375 ir_codes = ir_codes_eztv;
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -0700376 mask_keycode = 0x00017c;
377 mask_keyup = 0x000002;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 polling = 50; // ms
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -0700379 break;
380 case SAA7134_BOARD_KWORLD_XPERT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 case SAA7134_BOARD_AVACSSMARTTV:
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200382 ir_codes = ir_codes_pixelview;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 mask_keycode = 0x00001F;
384 mask_keyup = 0x000020;
385 polling = 50; // ms
386 break;
387 case SAA7134_BOARD_MD2819:
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700388 case SAA7134_BOARD_KWORLD_VSTREAM_XPERT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 case SAA7134_BOARD_AVERMEDIA_305:
390 case SAA7134_BOARD_AVERMEDIA_307:
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700391 case SAA7134_BOARD_AVERMEDIA_STUDIO_305:
392 case SAA7134_BOARD_AVERMEDIA_STUDIO_307:
Mikhail Fedotov3ac706d2006-10-06 20:23:47 -0300393 case SAA7134_BOARD_AVERMEDIA_STUDIO_507:
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700394 case SAA7134_BOARD_AVERMEDIA_GO_007_FM:
Albert Grahamd2761f22007-12-09 09:44:38 -0300395 case SAA7134_BOARD_AVERMEDIA_M102:
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200396 ir_codes = ir_codes_avermedia;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 mask_keycode = 0x0007C8;
398 mask_keydown = 0x000010;
399 polling = 50; // ms
400 /* Set GPIO pin2 to high to enable the IR controller */
401 saa_setb(SAA7134_GPIO_GPMODE0, 0x4);
402 saa_setb(SAA7134_GPIO_GPSTATUS0, 0x4);
403 break;
Mauro Carvalho Chehab36f6bb92008-06-26 17:03:00 -0300404 case SAA7134_BOARD_AVERMEDIA_M135A:
405 ir_codes = ir_codes_avermedia_m135a;
406 mask_keydown = 0x0040000;
407 mask_keycode = 0x00013f;
408 nec_gpio = 1;
409 break;
pasky@ucw.cz450efcf2006-11-12 14:22:32 -0300410 case SAA7134_BOARD_AVERMEDIA_777:
pasky@ucw.cz29e0f1a2006-11-12 14:23:32 -0300411 case SAA7134_BOARD_AVERMEDIA_A16AR:
pasky@ucw.cz450efcf2006-11-12 14:22:32 -0300412 ir_codes = ir_codes_avermedia;
413 mask_keycode = 0x02F200;
414 mask_keydown = 0x000400;
415 polling = 50; // ms
416 /* Without this we won't receive key up events */
417 saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
418 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
Linus Torvalds4dd74062006-11-13 09:50:11 -0800419 break;
Tim Farrington6e501a32008-06-15 13:33:42 -0300420 case SAA7134_BOARD_AVERMEDIA_A16D:
421 ir_codes = ir_codes_avermedia_a16d;
422 mask_keycode = 0x02F200;
423 mask_keydown = 0x000400;
424 polling = 50; /* ms */
425 /* Without this we won't receive key up events */
426 saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
427 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
428 break;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800429 case SAA7134_BOARD_KWORLD_TERMINATOR:
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200430 ir_codes = ir_codes_pixelview;
James R. Webbdc2286c2005-11-08 21:37:00 -0800431 mask_keycode = 0x00001f;
432 mask_keyup = 0x000060;
433 polling = 50; // ms
434 break;
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700435 case SAA7134_BOARD_MANLI_MTV001:
436 case SAA7134_BOARD_MANLI_MTV002:
Dmitry Belimovb34dddb2008-04-23 14:09:08 -0300437 ir_codes = ir_codes_manli;
438 mask_keycode = 0x001f00;
439 mask_keyup = 0x004000;
440 polling = 50; /* ms */
441 break;
Nickolay V. Shmyreva8ff4172005-11-08 21:36:16 -0800442 case SAA7134_BOARD_BEHOLD_409FM:
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -0300443 case SAA7134_BOARD_BEHOLD_401:
444 case SAA7134_BOARD_BEHOLD_403:
445 case SAA7134_BOARD_BEHOLD_403FM:
446 case SAA7134_BOARD_BEHOLD_405:
447 case SAA7134_BOARD_BEHOLD_405FM:
448 case SAA7134_BOARD_BEHOLD_407:
449 case SAA7134_BOARD_BEHOLD_407FM:
450 case SAA7134_BOARD_BEHOLD_409:
451 case SAA7134_BOARD_BEHOLD_505FM:
452 case SAA7134_BOARD_BEHOLD_507_9FM:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200453 ir_codes = ir_codes_manli;
Dmitry Belimovb34dddb2008-04-23 14:09:08 -0300454 mask_keycode = 0x003f00;
455 mask_keyup = 0x004000;
456 polling = 50; /* ms */
457 break;
458 case SAA7134_BOARD_BEHOLD_COLUMBUS_TVFM:
459 ir_codes = ir_codes_behold_columbus;
460 mask_keycode = 0x003f00;
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700461 mask_keyup = 0x004000;
Mauro Carvalho Chehabac19ecc2005-06-23 22:05:09 -0700462 polling = 50; // ms
463 break;
Ricardo Cerqueira17ce1ff2005-11-08 21:38:47 -0800464 case SAA7134_BOARD_SEDNA_PC_TV_CARDBUS:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200465 ir_codes = ir_codes_pctv_sedna;
Pavel Mihaylovc3d93192005-11-08 21:38:43 -0800466 mask_keycode = 0x001f00;
467 mask_keyup = 0x004000;
468 polling = 50; // ms
469 break;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800470 case SAA7134_BOARD_GOTVIEW_7135:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200471 ir_codes = ir_codes_gotview7135;
Pedro0938e312007-10-17 17:58:40 -0300472 mask_keycode = 0x0003CC;
Nickolay V. Shmyrev6b961442005-11-08 21:36:22 -0800473 mask_keydown = 0x000010;
Pedro0938e312007-10-17 17:58:40 -0300474 polling = 5; /* ms */
475 saa_setb(SAA7134_GPIO_GPMODE1, 0x80);
Nickolay V. Shmyrev6b961442005-11-08 21:36:22 -0800476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 case SAA7134_BOARD_VIDEOMATE_TV_PVR:
Nickolay V. Shmyrev2a9a9a82006-01-09 15:25:33 -0200478 case SAA7134_BOARD_VIDEOMATE_GOLD_PLUS:
Mauro Carvalho Chehab330a1152005-07-12 13:59:01 -0700479 case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200480 ir_codes = ir_codes_videomate_tv_pvr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 mask_keycode = 0x00003F;
482 mask_keyup = 0x400000;
483 polling = 50; // ms
484 break;
Michal Majchrowiczb04c1ba2006-09-13 16:42:42 -0300485 case SAA7134_BOARD_PROTEUS_2309:
486 ir_codes = ir_codes_proteus_2309;
487 mask_keycode = 0x00007F;
488 mask_keyup = 0x000080;
489 polling = 50; // ms
490 break;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800491 case SAA7134_BOARD_VIDEOMATE_DVBT_300:
492 case SAA7134_BOARD_VIDEOMATE_DVBT_200:
Ricardo Cerqueira4c0f6312006-01-23 09:42:06 -0200493 ir_codes = ir_codes_videomate_tv_pvr;
Nickolay V. Shmyrevfea095f2005-11-08 21:36:47 -0800494 mask_keycode = 0x003F00;
495 mask_keyup = 0x040000;
496 break;
James Le Cuirotf5c965a2007-07-02 12:53:25 -0300497 case SAA7134_BOARD_FLYDVBS_LR300:
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -0200498 case SAA7134_BOARD_FLYDVBT_LR301:
Rudo Thomasa8029172006-02-27 00:08:46 -0300499 case SAA7134_BOARD_FLYDVBTDUO:
Giampiero Giancipoli3d8466e2006-02-07 06:49:09 -0200500 ir_codes = ir_codes_flydvb;
501 mask_keycode = 0x0001F00;
502 mask_keydown = 0x0040000;
503 break;
Hermann Pitton91607232006-12-07 21:45:28 -0300504 case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
Ed Vipas904ab882007-03-29 18:32:49 -0300505 case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
Hermann Pitton0b17d0e2008-07-12 12:27:59 -0300506 case SAA7134_BOARD_ASUSTeK_P7131_ANALOG:
Hermann Pitton91607232006-12-07 21:45:28 -0300507 ir_codes = ir_codes_asus_pc39;
508 mask_keydown = 0x0040000;
509 rc5_gpio = 1;
510 break;
Juan Pablo Sormanic36c4592006-12-27 12:46:36 -0300511 case SAA7134_BOARD_ENCORE_ENLTV:
512 case SAA7134_BOARD_ENCORE_ENLTV_FM:
513 ir_codes = ir_codes_encore_enltv;
514 mask_keycode = 0x00007f;
515 mask_keyup = 0x040000;
516 polling = 50; // ms
517 break;
Mauro Carvalho Chehabbf1ece62008-06-26 17:03:00 -0300518 case SAA7134_BOARD_ENCORE_ENLTV_FM53:
519 ir_codes = ir_codes_encore_enltv_fm53;
520 mask_keydown = 0x0040000;
521 mask_keycode = 0x00007f;
522 nec_gpio = 1;
523 break;
Tony Wan480f75a2007-05-11 11:33:50 -0300524 case SAA7134_BOARD_10MOONSTVMASTER3:
525 ir_codes = ir_codes_encore_enltv;
526 mask_keycode = 0x5f80000;
527 mask_keyup = 0x8000000;
528 polling = 50; //ms
529 break;
Adrian Pardinif0ba3562008-02-11 12:40:53 -0300530 case SAA7134_BOARD_GENIUS_TVGO_A11MCE:
531 ir_codes = ir_codes_genius_tvgo_a11mce;
532 mask_keycode = 0xff;
533 mask_keydown = 0xf00000;
534 polling = 50; /* ms */
535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 if (NULL == ir_codes) {
538 printk("%s: Oops: IR config error [card=%d]\n",
539 dev->name, dev->board);
540 return -ENODEV;
541 }
542
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500543 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
544 input_dev = input_allocate_device();
545 if (!ir || !input_dev) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300546 err = -ENOMEM;
547 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Dmitry Torokhovd271d1c2005-11-20 00:56:54 -0500550 ir->dev = input_dev;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 /* init hardware-specific stuff */
553 ir->mask_keycode = mask_keycode;
554 ir->mask_keydown = mask_keydown;
555 ir->mask_keyup = mask_keyup;
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800556 ir->polling = polling;
Hermann Pitton91607232006-12-07 21:45:28 -0300557 ir->rc5_gpio = rc5_gpio;
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300558 ir->nec_gpio = nec_gpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 /* init input device */
561 snprintf(ir->name, sizeof(ir->name), "saa7134 IR (%s)",
562 saa7134_boards[dev->board].name);
563 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
564 pci_name(dev->pci));
565
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500566 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
567 input_dev->name = ir->name;
568 input_dev->phys = ir->phys;
569 input_dev->id.bustype = BUS_PCI;
570 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 if (dev->pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500572 input_dev->id.vendor = dev->pci->subsystem_vendor;
573 input_dev->id.product = dev->pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500575 input_dev->id.vendor = dev->pci->vendor;
576 input_dev->id.product = dev->pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300578 input_dev->dev.parent = &dev->pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dev->remote = ir;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300581 saa7134_ir_start(dev, ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300583 err = input_register_device(ir->dev);
584 if (err)
585 goto err_out_stop;
586
Pedro0938e312007-10-17 17:58:40 -0300587 /* the remote isn't as bouncy as a keyboard */
588 ir->dev->rep[REP_DELAY] = repeat_delay;
589 ir->dev->rep[REP_PERIOD] = repeat_period;
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300592
593 err_out_stop:
594 saa7134_ir_stop(dev);
595 dev->remote = NULL;
596 err_out_free:
597 input_free_device(input_dev);
598 kfree(ir);
599 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
602void saa7134_input_fini(struct saa7134_dev *dev)
603{
604 if (NULL == dev->remote)
605 return;
606
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300607 saa7134_ir_stop(dev);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500608 input_unregister_device(dev->remote->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 kfree(dev->remote);
610 dev->remote = NULL;
611}
612
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800613void saa7134_set_i2c_ir(struct saa7134_dev *dev, struct IR_i2c *ir)
614{
615 if (disable_ir) {
Ricardo Cerqueiracb2444d2005-11-08 21:38:47 -0800616 dprintk("Found supported i2c remote, but IR has been disabled\n");
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800617 ir->get_key=NULL;
618 return;
619 }
620
621 switch (dev->board) {
622 case SAA7134_BOARD_PINNACLE_PCTV_110i:
Hartmut Hackmanneb591af2006-10-12 19:46:16 -0300623 case SAA7134_BOARD_PINNACLE_PCTV_310i:
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800624 snprintf(ir->c.name, sizeof(ir->c.name), "Pinnacle PCTV");
Sylvain Pascheb93eedb2006-03-25 23:14:42 -0300625 if (pinnacle_remote == 0) {
626 ir->get_key = get_key_pinnacle_color;
627 ir->ir_codes = ir_codes_pinnacle_color;
628 } else {
629 ir->get_key = get_key_pinnacle_grey;
630 ir->ir_codes = ir_codes_pinnacle_grey;
631 }
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800632 break;
633 case SAA7134_BOARD_UPMOST_PURPLE_TV:
634 snprintf(ir->c.name, sizeof(ir->c.name), "Purple TV");
635 ir->get_key = get_key_purpletv;
636 ir->ir_codes = ir_codes_purpletv;
637 break;
Thomas Genty177aaaf2006-11-29 21:57:24 -0300638 case SAA7134_BOARD_HAUPPAUGE_HVR1110:
639 snprintf(ir->c.name, sizeof(ir->c.name), "HVR 1110");
640 ir->get_key = get_key_hvr1110;
641 ir->ir_codes = ir_codes_hauppauge_new;
642 break;
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -0300643 case SAA7134_BOARD_BEHOLD_607_9FM:
644 case SAA7134_BOARD_BEHOLD_M6:
Dmitry Belimov878cf2a2008-06-10 14:22:00 -0300645 case SAA7134_BOARD_BEHOLD_M63:
646 case SAA7134_BOARD_BEHOLD_M6_EXTRA:
Igor Kuznetsov02505272008-04-26 14:53:48 -0300647 case SAA7134_BOARD_BEHOLD_H6:
Andrey J. Melnikoff (TEMHOTA)e8018c92008-01-07 05:17:39 -0300648 snprintf(ir->c.name, sizeof(ir->c.name), "BeholdTV");
649 ir->get_key = get_key_beholdm6xx;
650 ir->ir_codes = ir_codes_behold;
651 break;
Ricardo Cerqueiraac9cd972005-11-08 21:37:56 -0800652 default:
653 dprintk("Shouldn't get here: Unknown board %x for I2C IR?\n",dev->board);
654 break;
655 }
656
657}
Hermann Pitton91607232006-12-07 21:45:28 -0300658
659static int saa7134_rc5_irq(struct saa7134_dev *dev)
660{
661 struct card_ir *ir = dev->remote;
662 struct timeval tv;
663 u32 gap;
664 unsigned long current_jiffies, timeout;
665
666 /* get time of bit */
667 current_jiffies = jiffies;
668 do_gettimeofday(&tv);
669
670 /* avoid overflow with gap >1s */
671 if (tv.tv_sec - ir->base_time.tv_sec > 1) {
672 gap = 200000;
673 } else {
674 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
675 tv.tv_usec - ir->base_time.tv_usec;
676 }
677
678 /* active code => add bit */
679 if (ir->active) {
680 /* only if in the code (otherwise spurious IRQ or timer
681 late) */
682 if (ir->last_bit < 28) {
683 ir->last_bit = (gap - ir_rc5_remote_gap / 2) /
684 ir_rc5_remote_gap;
685 ir->code |= 1 << ir->last_bit;
686 }
687 /* starting new code */
688 } else {
689 ir->active = 1;
690 ir->code = 0;
691 ir->base_time = tv;
692 ir->last_bit = 0;
693
694 timeout = current_jiffies + (500 + 30 * HZ) / 1000;
695 mod_timer(&ir->timer_end, timeout);
696 }
697
698 return 1;
699}
700
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300701
702/* On NEC protocol, One has 2.25 ms, and zero has 1.125 ms
703 The first pulse (start) has 9 + 4.5 ms
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Mauro Carvalho Chehab622ecb32008-08-05 10:03:17 -0300705
706static void saa7134_nec_timer(unsigned long data)
707{
708 struct saa7134_dev *dev = (struct saa7134_dev *) data;
709 struct card_ir *ir = dev->remote;
710
711 dprintk("Cancel key repeat\n");
712
713 ir_input_nokey(ir->dev, &ir->ir);
714}
715
716static void nec_task(unsigned long data)
717{
718 struct saa7134_dev *dev = (struct saa7134_dev *) data;
719 struct card_ir *ir;
720 struct timeval tv;
721 int count, pulse, oldpulse, gap;
722 u32 ircode = 0, not_code = 0;
723 int ngap = 0;
724
725 if (!data) {
726 printk(KERN_ERR "saa713x/ir: Can't recover dev struct\n");
727 /* GPIO will be kept disabled */
728 return;
729 }
730
731 ir = dev->remote;
732
733 /* rising SAA7134_GPIO_GPRESCAN reads the status */
734 saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
735 saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
736
737 oldpulse = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2) & ir->mask_keydown;
738 pulse = oldpulse;
739
740 do_gettimeofday(&tv);
741 ir->base_time = tv;
742
743 /* Decode NEC pulsecode. This code can take up to 76.5 ms to run.
744 Unfortunately, using IRQ to decode pulse didn't work, since it uses
745 a pulse train of 38KHz. This means one pulse on each 52 us
746 */
747 do {
748 /* Wait until the end of pulse/space or 5 ms */
749 for (count = 0; count < 500; count++) {
750 udelay(10);
751 /* rising SAA7134_GPIO_GPRESCAN reads the status */
752 saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
753 saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
754 pulse = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2)
755 & ir->mask_keydown;
756 if (pulse != oldpulse)
757 break;
758 }
759
760 do_gettimeofday(&tv);
761 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
762 tv.tv_usec - ir->base_time.tv_usec;
763
764 if (!pulse) {
765 /* Bit 0 has 560 us, while bit 1 has 1120 us.
766 Do something only if bit == 1
767 */
768 if (ngap && (gap > 560 + 280)) {
769 unsigned int shift = ngap - 1;
770
771 /* Address first, then command */
772 if (shift < 8) {
773 shift += 8;
774 ircode |= 1 << shift;
775 } else if (shift < 16) {
776 not_code |= 1 << shift;
777 } else if (shift < 24) {
778 shift -= 16;
779 ircode |= 1 << shift;
780 } else {
781 shift -= 24;
782 not_code |= 1 << shift;
783 }
784 }
785 ngap++;
786 }
787
788
789 ir->base_time = tv;
790
791 /* TIMEOUT - Long pulse */
792 if (gap >= 5000)
793 break;
794 oldpulse = pulse;
795 } while (ngap < 32);
796
797 if (ngap == 32) {
798 /* FIXME: should check if not_code == ~ircode */
799 ir->code = ir_extract_bits(ircode, ir->mask_keycode);
800
801 dprintk("scancode = 0x%02x (code = 0x%02x, notcode= 0x%02x)\n",
802 ir->code, ircode, not_code);
803
804 ir_input_keydown(ir->dev, &ir->ir, ir->code, ir->code);
805 } else
806 dprintk("Repeat last key\n");
807
808 /* Keep repeating the last key */
809 mod_timer(&ir->timer_keyup, jiffies + msecs_to_jiffies(150));
810
811 saa_setl(SAA7134_IRQ2, SAA7134_IRQ2_INTE_GPIO18);
812}
813
814static int saa7134_nec_irq(struct saa7134_dev *dev)
815{
816 struct card_ir *ir = dev->remote;
817
818 saa_clearl(SAA7134_IRQ2, SAA7134_IRQ2_INTE_GPIO18);
819 tasklet_schedule(&ir->tlet);
820
821 return 1;
822}