V4L/DVB: Teach drivers/media/IR/ir-raw-event.c to use durations
[safe/jmp/linux-2.6] / drivers / media / video / saa7134 / saa7134-input.c
1 /*
2  *
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>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/input.h>
26 #include <linux/slab.h>
27
28 #include "saa7134-reg.h"
29 #include "saa7134.h"
30
31 #define MODULE_NAME "saa7134"
32
33 static unsigned int disable_ir;
34 module_param(disable_ir, int, 0444);
35 MODULE_PARM_DESC(disable_ir,"disable infrared remote support");
36
37 static unsigned int ir_debug;
38 module_param(ir_debug, int, 0644);
39 MODULE_PARM_DESC(ir_debug,"enable debug messages [IR]");
40
41 static int pinnacle_remote;
42 module_param(pinnacle_remote, int, 0644);    /* Choose Pinnacle PCTV remote */
43 MODULE_PARM_DESC(pinnacle_remote, "Specify Pinnacle PCTV remote: 0=coloured, 1=grey (defaults to 0)");
44
45 static int ir_rc5_remote_gap = 885;
46 module_param(ir_rc5_remote_gap, int, 0644);
47 static int ir_rc5_key_timeout = 115;
48 module_param(ir_rc5_key_timeout, int, 0644);
49
50 static int repeat_delay = 500;
51 module_param(repeat_delay, int, 0644);
52 MODULE_PARM_DESC(repeat_delay, "delay before key repeat started");
53 static int repeat_period = 33;
54 module_param(repeat_period, int, 0644);
55 MODULE_PARM_DESC(repeat_period, "repeat period between "
56     "keypresses when key is down");
57
58 static unsigned int disable_other_ir;
59 module_param(disable_other_ir, int, 0644);
60 MODULE_PARM_DESC(disable_other_ir, "disable full codes of "
61     "alternative remotes from other manufacturers");
62
63 #define dprintk(fmt, arg...)    if (ir_debug) \
64         printk(KERN_DEBUG "%s/ir: " fmt, dev->name , ## arg)
65 #define i2cdprintk(fmt, arg...)    if (ir_debug) \
66         printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg)
67
68 /* Helper functions for RC5 and NEC decoding at GPIO16 or GPIO18 */
69 static int saa7134_rc5_irq(struct saa7134_dev *dev);
70 static int saa7134_nec_irq(struct saa7134_dev *dev);
71 static int saa7134_raw_decode_irq(struct saa7134_dev *dev);
72 static void nec_task(unsigned long data);
73 static void saa7134_nec_timer(unsigned long data);
74
75 /* -------------------- GPIO generic keycode builder -------------------- */
76
77 static int build_key(struct saa7134_dev *dev)
78 {
79         struct card_ir *ir = dev->remote;
80         u32 gpio, data;
81
82         /* here comes the additional handshake steps for some cards */
83         switch (dev->board) {
84         case SAA7134_BOARD_GOTVIEW_7135:
85                 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x80);
86                 saa_clearb(SAA7134_GPIO_GPSTATUS1, 0x80);
87                 break;
88         }
89         /* rising SAA7134_GPIO_GPRESCAN reads the status */
90         saa_clearb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);
91         saa_setb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);
92
93         gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
94         if (ir->polling) {
95                 if (ir->last_gpio == gpio)
96                         return 0;
97                 ir->last_gpio = gpio;
98         }
99
100         data = ir_extract_bits(gpio, ir->mask_keycode);
101         dprintk("build_key gpio=0x%x mask=0x%x data=%d\n",
102                 gpio, ir->mask_keycode, data);
103
104         switch (dev->board) {
105         case SAA7134_BOARD_KWORLD_PLUS_TV_ANALOG:
106                 if (data == ir->mask_keycode)
107                         ir_input_nokey(ir->dev, &ir->ir);
108                 else
109                         ir_input_keydown(ir->dev, &ir->ir, data);
110                 return 0;
111         }
112
113         if (ir->polling) {
114                 if ((ir->mask_keydown  &&  (0 != (gpio & ir->mask_keydown))) ||
115                     (ir->mask_keyup    &&  (0 == (gpio & ir->mask_keyup)))) {
116                         ir_input_keydown(ir->dev, &ir->ir, data);
117                 } else {
118                         ir_input_nokey(ir->dev, &ir->ir);
119                 }
120         }
121         else {  /* IRQ driven mode - handle key press and release in one go */
122                 if ((ir->mask_keydown  &&  (0 != (gpio & ir->mask_keydown))) ||
123                     (ir->mask_keyup    &&  (0 == (gpio & ir->mask_keyup)))) {
124                         ir_input_keydown(ir->dev, &ir->ir, data);
125                         ir_input_nokey(ir->dev, &ir->ir);
126                 }
127         }
128
129         return 0;
130 }
131
132 /* --------------------- Chip specific I2C key builders ----------------- */
133
134 static int get_key_flydvb_trio(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
135 {
136         int gpio;
137         int attempt = 0;
138         unsigned char b;
139
140         /* We need this to access GPI Used by the saa_readl macro. */
141         struct saa7134_dev *dev = ir->c->adapter->algo_data;
142
143         if (dev == NULL) {
144                 dprintk("get_key_flydvb_trio: "
145                          "gir->c->adapter->algo_data is NULL!\n");
146                 return -EIO;
147         }
148
149         /* rising SAA7134_GPIGPRESCAN reads the status */
150         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
151         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
152
153         gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
154
155         if (0x40000 & ~gpio)
156                 return 0; /* No button press */
157
158         /* No button press - only before first key pressed */
159         if (b == 0xFF)
160                 return 0;
161
162         /* poll IR chip */
163         /* weak up the IR chip */
164         b = 0;
165
166         while (1 != i2c_master_send(ir->c, &b, 1)) {
167                 if ((attempt++) < 10) {
168                         /*
169                          * wait a bit for next attempt -
170                          * I don't know how make it better
171                          */
172                         msleep(10);
173                         continue;
174                 }
175                 i2cdprintk("send wake up byte to pic16C505 (IR chip)"
176                            "failed %dx\n", attempt);
177                 return -EIO;
178         }
179         if (1 != i2c_master_recv(ir->c, &b, 1)) {
180                 i2cdprintk("read error\n");
181                 return -EIO;
182         }
183
184         *ir_key = b;
185         *ir_raw = b;
186         return 1;
187 }
188
189 static int get_key_msi_tvanywhere_plus(struct IR_i2c *ir, u32 *ir_key,
190                                        u32 *ir_raw)
191 {
192         unsigned char b;
193         int gpio;
194
195         /* <dev> is needed to access GPIO. Used by the saa_readl macro. */
196         struct saa7134_dev *dev = ir->c->adapter->algo_data;
197         if (dev == NULL) {
198                 dprintk("get_key_msi_tvanywhere_plus: "
199                         "gir->c->adapter->algo_data is NULL!\n");
200                 return -EIO;
201         }
202
203         /* rising SAA7134_GPIO_GPRESCAN reads the status */
204
205         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
206         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
207
208         gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
209
210         /* GPIO&0x40 is pulsed low when a button is pressed. Don't do
211            I2C receive if gpio&0x40 is not low. */
212
213         if (gpio & 0x40)
214                 return 0;       /* No button press */
215
216         /* GPIO says there is a button press. Get it. */
217
218         if (1 != i2c_master_recv(ir->c, &b, 1)) {
219                 i2cdprintk("read error\n");
220                 return -EIO;
221         }
222
223         /* No button press */
224
225         if (b == 0xff)
226                 return 0;
227
228         /* Button pressed */
229
230         dprintk("get_key_msi_tvanywhere_plus: Key = 0x%02X\n", b);
231         *ir_key = b;
232         *ir_raw = b;
233         return 1;
234 }
235
236 static int get_key_purpletv(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
237 {
238         unsigned char b;
239
240         /* poll IR chip */
241         if (1 != i2c_master_recv(ir->c, &b, 1)) {
242                 i2cdprintk("read error\n");
243                 return -EIO;
244         }
245
246         /* no button press */
247         if (b==0)
248                 return 0;
249
250         /* repeating */
251         if (b & 0x80)
252                 return 1;
253
254         *ir_key = b;
255         *ir_raw = b;
256         return 1;
257 }
258
259 static int get_key_hvr1110(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
260 {
261         unsigned char buf[5], cod4, code3, code4;
262
263         /* poll IR chip */
264         if (5 != i2c_master_recv(ir->c, buf, 5))
265                 return -EIO;
266
267         cod4    = buf[4];
268         code4   = (cod4 >> 2);
269         code3   = buf[3];
270         if (code3 == 0)
271                 /* no key pressed */
272                 return 0;
273
274         /* return key */
275         *ir_key = code4;
276         *ir_raw = code4;
277         return 1;
278 }
279
280
281 static int get_key_beholdm6xx(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
282 {
283         unsigned char data[12];
284         u32 gpio;
285
286         struct saa7134_dev *dev = ir->c->adapter->algo_data;
287
288         /* rising SAA7134_GPIO_GPRESCAN reads the status */
289         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
290         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
291
292         gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
293
294         if (0x400000 & ~gpio)
295                 return 0; /* No button press */
296
297         ir->c->addr = 0x5a >> 1;
298
299         if (12 != i2c_master_recv(ir->c, data, 12)) {
300                 i2cdprintk("read error\n");
301                 return -EIO;
302         }
303         /* IR of this card normally decode signals NEC-standard from
304          * - Sven IHOO MT 5.1R remote. xxyye718
305          * - Sven DVD HD-10xx remote. xxyyf708
306          * - BBK ...
307          * - mayby others
308          * So, skip not our, if disable full codes mode.
309          */
310         if (data[10] != 0x6b && data[11] != 0x86 && disable_other_ir)
311                 return 0;
312
313         /* Wrong data decode fix */
314         if (data[9] != (unsigned char)(~data[8]))
315                 return 0;
316
317         *ir_key = data[9];
318         *ir_raw = data[9];
319
320         return 1;
321 }
322
323 /* Common (grey or coloured) pinnacle PCTV remote handling
324  *
325  */
326 static int get_key_pinnacle(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw,
327                             int parity_offset, int marker, int code_modulo)
328 {
329         unsigned char b[4];
330         unsigned int start = 0,parity = 0,code = 0;
331
332         /* poll IR chip */
333         if (4 != i2c_master_recv(ir->c, b, 4)) {
334                 i2cdprintk("read error\n");
335                 return -EIO;
336         }
337
338         for (start = 0; start < ARRAY_SIZE(b); start++) {
339                 if (b[start] == marker) {
340                         code=b[(start+parity_offset + 1) % 4];
341                         parity=b[(start+parity_offset) % 4];
342                 }
343         }
344
345         /* Empty Request */
346         if (parity == 0)
347                 return 0;
348
349         /* Repeating... */
350         if (ir->old == parity)
351                 return 0;
352
353         ir->old = parity;
354
355         /* drop special codes when a key is held down a long time for the grey controller
356            In this case, the second bit of the code is asserted */
357         if (marker == 0xfe && (code & 0x40))
358                 return 0;
359
360         code %= code_modulo;
361
362         *ir_raw = code;
363         *ir_key = code;
364
365         i2cdprintk("Pinnacle PCTV key %02x\n", code);
366
367         return 1;
368 }
369
370 /* The grey pinnacle PCTV remote
371  *
372  *  There are one issue with this remote:
373  *   - I2c packet does not change when the same key is pressed quickly. The workaround
374  *     is to hold down each key for about half a second, so that another code is generated
375  *     in the i2c packet, and the function can distinguish key presses.
376  *
377  * Sylvain Pasche <sylvain.pasche@gmail.com>
378  */
379 static int get_key_pinnacle_grey(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
380 {
381
382         return get_key_pinnacle(ir, ir_key, ir_raw, 1, 0xfe, 0xff);
383 }
384
385
386 /* The new pinnacle PCTV remote (with the colored buttons)
387  *
388  * Ricardo Cerqueira <v4l@cerqueira.org>
389  */
390 static int get_key_pinnacle_color(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
391 {
392         /* code_modulo parameter (0x88) is used to reduce code value to fit inside IR_KEYTAB_SIZE
393          *
394          * this is the only value that results in 42 unique
395          * codes < 128
396          */
397
398         return get_key_pinnacle(ir, ir_key, ir_raw, 2, 0x80, 0x88);
399 }
400
401 void saa7134_input_irq(struct saa7134_dev *dev)
402 {
403         struct card_ir *ir;
404
405         if (!dev || !dev->remote)
406                 return;
407
408         ir = dev->remote;
409         if (!ir->running)
410                 return;
411
412         if (ir->nec_gpio) {
413                 saa7134_nec_irq(dev);
414         } else if (!ir->polling && !ir->rc5_gpio && !ir->raw_decode) {
415                 build_key(dev);
416         } else if (ir->rc5_gpio) {
417                 saa7134_rc5_irq(dev);
418         } else if (ir->raw_decode) {
419                 saa7134_raw_decode_irq(dev);
420         }
421 }
422
423 static void saa7134_input_timer(unsigned long data)
424 {
425         struct saa7134_dev *dev = (struct saa7134_dev *)data;
426         struct card_ir *ir = dev->remote;
427
428         build_key(dev);
429         mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
430 }
431
432 void ir_raw_decode_timer_end(unsigned long data)
433 {
434         struct saa7134_dev *dev = (struct saa7134_dev *)data;
435         struct card_ir *ir = dev->remote;
436
437         ir_raw_event_handle(dev->remote->dev);
438
439         ir->active = 0;
440 }
441
442 static int __saa7134_ir_start(void *priv)
443 {
444         struct saa7134_dev *dev = priv;
445         struct card_ir *ir;
446
447         if (!dev)
448                 return -EINVAL;
449
450         ir  = dev->remote;
451         if (!ir)
452                 return -EINVAL;
453
454         if (ir->running)
455                 return 0;
456
457         ir->running = 1;
458         if (ir->polling) {
459                 setup_timer(&ir->timer, saa7134_input_timer,
460                             (unsigned long)dev);
461                 ir->timer.expires  = jiffies + HZ;
462                 add_timer(&ir->timer);
463         } else if (ir->rc5_gpio) {
464                 /* set timer_end for code completion */
465                 init_timer(&ir->timer_end);
466                 ir->timer_end.function = ir_rc5_timer_end;
467                 ir->timer_end.data = (unsigned long)ir;
468                 init_timer(&ir->timer_keyup);
469                 ir->timer_keyup.function = ir_rc5_timer_keyup;
470                 ir->timer_keyup.data = (unsigned long)ir;
471                 ir->shift_by = 2;
472                 ir->start = 0x2;
473                 ir->addr = 0x17;
474                 ir->rc5_key_timeout = ir_rc5_key_timeout;
475                 ir->rc5_remote_gap = ir_rc5_remote_gap;
476         } else if (ir->nec_gpio) {
477                 setup_timer(&ir->timer_keyup, saa7134_nec_timer,
478                             (unsigned long)dev);
479                 tasklet_init(&ir->tlet, nec_task, (unsigned long)dev);
480         } else if (ir->raw_decode) {
481                 /* set timer_end for code completion */
482                 init_timer(&ir->timer_end);
483                 ir->timer_end.function = ir_raw_decode_timer_end;
484                 ir->timer_end.data = (unsigned long)dev;
485                 ir->active = 0;
486         }
487
488         return 0;
489 }
490
491 static void __saa7134_ir_stop(void *priv)
492 {
493         struct saa7134_dev *dev = priv;
494         struct card_ir *ir;
495
496         if (!dev)
497                 return;
498
499         ir  = dev->remote;
500         if (!ir)
501                 return;
502
503         if (!ir->running)
504                 return;
505         if (dev->remote->polling)
506                 del_timer_sync(&dev->remote->timer);
507         else if (ir->rc5_gpio)
508                 del_timer_sync(&ir->timer_end);
509         else if (ir->nec_gpio)
510                 tasklet_kill(&ir->tlet);
511         else if (ir->raw_decode) {
512                 del_timer_sync(&ir->timer_end);
513                 ir->active = 0;
514         }
515
516         ir->running = 0;
517
518         return;
519 }
520
521 int saa7134_ir_start(struct saa7134_dev *dev)
522 {
523         if (dev->remote->users)
524                 return __saa7134_ir_start(dev);
525
526         return 0;
527 }
528
529 void saa7134_ir_stop(struct saa7134_dev *dev)
530 {
531         if (dev->remote->users)
532                 __saa7134_ir_stop(dev);
533 }
534
535 static int saa7134_ir_open(void *priv)
536 {
537         struct saa7134_dev *dev = priv;
538
539         dev->remote->users++;
540         return __saa7134_ir_start(dev);
541 }
542
543 static void saa7134_ir_close(void *priv)
544 {
545         struct saa7134_dev *dev = priv;
546
547         dev->remote->users--;
548         if (!dev->remote->users)
549                 __saa7134_ir_stop(dev);
550 }
551
552
553 int saa7134_ir_change_protocol(void *priv, u64 ir_type)
554 {
555         struct saa7134_dev *dev = priv;
556         struct card_ir *ir = dev->remote;
557         u32 nec_gpio, rc5_gpio;
558
559         if (ir_type == IR_TYPE_RC5) {
560                 dprintk("Changing protocol to RC5\n");
561                 nec_gpio = 0;
562                 rc5_gpio = 1;
563         } else if (ir_type == IR_TYPE_NEC) {
564                 dprintk("Changing protocol to NEC\n");
565                 nec_gpio = 1;
566                 rc5_gpio = 0;
567         } else {
568                 dprintk("IR protocol type %ud is not supported\n",
569                         (unsigned)ir_type);
570                 return -EINVAL;
571         }
572
573         if (ir->running) {
574                 saa7134_ir_stop(dev);
575                 ir->nec_gpio = nec_gpio;
576                 ir->rc5_gpio = rc5_gpio;
577                 saa7134_ir_start(dev);
578         } else {
579                 ir->nec_gpio = nec_gpio;
580                 ir->rc5_gpio = rc5_gpio;
581         }
582
583         return 0;
584 }
585
586 int saa7134_input_init1(struct saa7134_dev *dev)
587 {
588         struct card_ir *ir;
589         struct input_dev *input_dev;
590         char *ir_codes = NULL;
591         u32 mask_keycode = 0;
592         u32 mask_keydown = 0;
593         u32 mask_keyup   = 0;
594         int polling      = 0;
595         int rc5_gpio     = 0;
596         int nec_gpio     = 0;
597         int raw_decode   = 0;
598         int allow_protocol_change = 0;
599         u64 ir_type = IR_TYPE_OTHER;
600         int err;
601
602         if (dev->has_remote != SAA7134_REMOTE_GPIO)
603                 return -ENODEV;
604         if (disable_ir)
605                 return -ENODEV;
606
607         /* detect & configure */
608         switch (dev->board) {
609         case SAA7134_BOARD_FLYVIDEO2000:
610         case SAA7134_BOARD_FLYVIDEO3000:
611         case SAA7134_BOARD_FLYTVPLATINUM_FM:
612         case SAA7134_BOARD_FLYTVPLATINUM_MINI2:
613         case SAA7134_BOARD_ROVERMEDIA_LINK_PRO_FM:
614                 ir_codes     = RC_MAP_FLYVIDEO;
615                 mask_keycode = 0xEC00000;
616                 mask_keydown = 0x0040000;
617                 break;
618         case SAA7134_BOARD_CINERGY400:
619         case SAA7134_BOARD_CINERGY600:
620         case SAA7134_BOARD_CINERGY600_MK3:
621                 ir_codes     = RC_MAP_CINERGY;
622                 mask_keycode = 0x00003f;
623                 mask_keyup   = 0x040000;
624                 break;
625         case SAA7134_BOARD_ECS_TVP3XP:
626         case SAA7134_BOARD_ECS_TVP3XP_4CB5:
627                 ir_codes     = RC_MAP_EZTV;
628                 mask_keycode = 0x00017c;
629                 mask_keyup   = 0x000002;
630                 polling      = 50; // ms
631                 break;
632         case SAA7134_BOARD_KWORLD_XPERT:
633         case SAA7134_BOARD_AVACSSMARTTV:
634                 ir_codes     = RC_MAP_PIXELVIEW;
635                 mask_keycode = 0x00001F;
636                 mask_keyup   = 0x000020;
637                 polling      = 50; // ms
638                 break;
639         case SAA7134_BOARD_MD2819:
640         case SAA7134_BOARD_KWORLD_VSTREAM_XPERT:
641         case SAA7134_BOARD_AVERMEDIA_305:
642         case SAA7134_BOARD_AVERMEDIA_307:
643         case SAA7134_BOARD_AVERMEDIA_STUDIO_305:
644         case SAA7134_BOARD_AVERMEDIA_STUDIO_505:
645         case SAA7134_BOARD_AVERMEDIA_STUDIO_307:
646         case SAA7134_BOARD_AVERMEDIA_STUDIO_507:
647         case SAA7134_BOARD_AVERMEDIA_STUDIO_507UA:
648         case SAA7134_BOARD_AVERMEDIA_GO_007_FM:
649         case SAA7134_BOARD_AVERMEDIA_M102:
650         case SAA7134_BOARD_AVERMEDIA_GO_007_FM_PLUS:
651                 ir_codes     = RC_MAP_AVERMEDIA;
652                 mask_keycode = 0x0007C8;
653                 mask_keydown = 0x000010;
654                 polling      = 50; // ms
655                 /* Set GPIO pin2 to high to enable the IR controller */
656                 saa_setb(SAA7134_GPIO_GPMODE0, 0x4);
657                 saa_setb(SAA7134_GPIO_GPSTATUS0, 0x4);
658                 break;
659         case SAA7134_BOARD_AVERMEDIA_M135A:
660                 ir_codes     = RC_MAP_AVERMEDIA_M135A_RM_JX;
661                 mask_keydown = 0x0040000;       /* Enable GPIO18 line on both edges */
662                 mask_keyup   = 0x0040000;
663                 mask_keycode = 0xffff;
664                 raw_decode   = 1;
665                 break;
666         case SAA7134_BOARD_AVERMEDIA_777:
667         case SAA7134_BOARD_AVERMEDIA_A16AR:
668                 ir_codes     = RC_MAP_AVERMEDIA;
669                 mask_keycode = 0x02F200;
670                 mask_keydown = 0x000400;
671                 polling      = 50; // ms
672                 /* Without this we won't receive key up events */
673                 saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
674                 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
675                 break;
676         case SAA7134_BOARD_AVERMEDIA_A16D:
677                 ir_codes     = RC_MAP_AVERMEDIA_A16D;
678                 mask_keycode = 0x02F200;
679                 mask_keydown = 0x000400;
680                 polling      = 50; /* ms */
681                 /* Without this we won't receive key up events */
682                 saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
683                 saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
684                 break;
685         case SAA7134_BOARD_KWORLD_TERMINATOR:
686                 ir_codes     = RC_MAP_PIXELVIEW;
687                 mask_keycode = 0x00001f;
688                 mask_keyup   = 0x000060;
689                 polling      = 50; // ms
690                 break;
691         case SAA7134_BOARD_MANLI_MTV001:
692         case SAA7134_BOARD_MANLI_MTV002:
693                 ir_codes     = RC_MAP_MANLI;
694                 mask_keycode = 0x001f00;
695                 mask_keyup   = 0x004000;
696                 polling      = 50; /* ms */
697                 break;
698         case SAA7134_BOARD_BEHOLD_409FM:
699         case SAA7134_BOARD_BEHOLD_401:
700         case SAA7134_BOARD_BEHOLD_403:
701         case SAA7134_BOARD_BEHOLD_403FM:
702         case SAA7134_BOARD_BEHOLD_405:
703         case SAA7134_BOARD_BEHOLD_405FM:
704         case SAA7134_BOARD_BEHOLD_407:
705         case SAA7134_BOARD_BEHOLD_407FM:
706         case SAA7134_BOARD_BEHOLD_409:
707         case SAA7134_BOARD_BEHOLD_505FM:
708         case SAA7134_BOARD_BEHOLD_505RDS_MK5:
709         case SAA7134_BOARD_BEHOLD_505RDS_MK3:
710         case SAA7134_BOARD_BEHOLD_507_9FM:
711         case SAA7134_BOARD_BEHOLD_507RDS_MK3:
712         case SAA7134_BOARD_BEHOLD_507RDS_MK5:
713                 ir_codes     = RC_MAP_MANLI;
714                 mask_keycode = 0x003f00;
715                 mask_keyup   = 0x004000;
716                 polling      = 50; /* ms */
717                 break;
718         case SAA7134_BOARD_BEHOLD_COLUMBUS_TVFM:
719                 ir_codes     = RC_MAP_BEHOLD_COLUMBUS;
720                 mask_keycode = 0x003f00;
721                 mask_keyup   = 0x004000;
722                 polling      = 50; // ms
723                 break;
724         case SAA7134_BOARD_SEDNA_PC_TV_CARDBUS:
725                 ir_codes     = RC_MAP_PCTV_SEDNA;
726                 mask_keycode = 0x001f00;
727                 mask_keyup   = 0x004000;
728                 polling      = 50; // ms
729                 break;
730         case SAA7134_BOARD_GOTVIEW_7135:
731                 ir_codes     = RC_MAP_GOTVIEW7135;
732                 mask_keycode = 0x0003CC;
733                 mask_keydown = 0x000010;
734                 polling      = 5; /* ms */
735                 saa_setb(SAA7134_GPIO_GPMODE1, 0x80);
736                 break;
737         case SAA7134_BOARD_VIDEOMATE_TV_PVR:
738         case SAA7134_BOARD_VIDEOMATE_GOLD_PLUS:
739         case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII:
740                 ir_codes     = RC_MAP_VIDEOMATE_TV_PVR;
741                 mask_keycode = 0x00003F;
742                 mask_keyup   = 0x400000;
743                 polling      = 50; // ms
744                 break;
745         case SAA7134_BOARD_PROTEUS_2309:
746                 ir_codes     = RC_MAP_PROTEUS_2309;
747                 mask_keycode = 0x00007F;
748                 mask_keyup   = 0x000080;
749                 polling      = 50; // ms
750                 break;
751         case SAA7134_BOARD_VIDEOMATE_DVBT_300:
752         case SAA7134_BOARD_VIDEOMATE_DVBT_200:
753                 ir_codes     = RC_MAP_VIDEOMATE_TV_PVR;
754                 mask_keycode = 0x003F00;
755                 mask_keyup   = 0x040000;
756                 break;
757         case SAA7134_BOARD_FLYDVBS_LR300:
758         case SAA7134_BOARD_FLYDVBT_LR301:
759         case SAA7134_BOARD_FLYDVBTDUO:
760                 ir_codes     = RC_MAP_FLYDVB;
761                 mask_keycode = 0x0001F00;
762                 mask_keydown = 0x0040000;
763                 break;
764         case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
765         case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
766         case SAA7134_BOARD_ASUSTeK_P7131_ANALOG:
767                 ir_codes     = RC_MAP_ASUS_PC39;
768                 mask_keydown = 0x0040000;
769                 rc5_gpio = 1;
770                 break;
771         case SAA7134_BOARD_ENCORE_ENLTV:
772         case SAA7134_BOARD_ENCORE_ENLTV_FM:
773                 ir_codes     = RC_MAP_ENCORE_ENLTV;
774                 mask_keycode = 0x00007f;
775                 mask_keyup   = 0x040000;
776                 polling      = 50; // ms
777                 break;
778         case SAA7134_BOARD_ENCORE_ENLTV_FM53:
779                 ir_codes     = RC_MAP_ENCORE_ENLTV_FM53;
780                 mask_keydown = 0x0040000;
781                 mask_keycode = 0x00007f;
782                 nec_gpio = 1;
783                 break;
784         case SAA7134_BOARD_10MOONSTVMASTER3:
785                 ir_codes     = RC_MAP_ENCORE_ENLTV;
786                 mask_keycode = 0x5f80000;
787                 mask_keyup   = 0x8000000;
788                 polling      = 50; //ms
789                 break;
790         case SAA7134_BOARD_GENIUS_TVGO_A11MCE:
791                 ir_codes     = RC_MAP_GENIUS_TVGO_A11MCE;
792                 mask_keycode = 0xff;
793                 mask_keydown = 0xf00000;
794                 polling = 50; /* ms */
795                 break;
796         case SAA7134_BOARD_REAL_ANGEL_220:
797                 ir_codes     = RC_MAP_REAL_AUDIO_220_32_KEYS;
798                 mask_keycode = 0x3f00;
799                 mask_keyup   = 0x4000;
800                 polling = 50; /* ms */
801                 break;
802         case SAA7134_BOARD_KWORLD_PLUS_TV_ANALOG:
803                 ir_codes     = RC_MAP_KWORLD_PLUS_TV_ANALOG;
804                 mask_keycode = 0x7f;
805                 polling = 40; /* ms */
806                 break;
807         case SAA7134_BOARD_VIDEOMATE_S350:
808                 ir_codes     = RC_MAP_VIDEOMATE_S350;
809                 mask_keycode = 0x003f00;
810                 mask_keydown = 0x040000;
811                 break;
812         case SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S:
813                 ir_codes     = RC_MAP_WINFAST;
814                 mask_keycode = 0x5f00;
815                 mask_keyup   = 0x020000;
816                 polling      = 50; /* ms */
817                 break;
818         break;
819         }
820         if (NULL == ir_codes) {
821                 printk("%s: Oops: IR config error [card=%d]\n",
822                        dev->name, dev->board);
823                 return -ENODEV;
824         }
825
826         ir = kzalloc(sizeof(*ir), GFP_KERNEL);
827         input_dev = input_allocate_device();
828         if (!ir || !input_dev) {
829                 err = -ENOMEM;
830                 goto err_out_free;
831         }
832
833         ir->dev = input_dev;
834         dev->remote = ir;
835
836         ir->running = 0;
837
838         /* init hardware-specific stuff */
839         ir->mask_keycode = mask_keycode;
840         ir->mask_keydown = mask_keydown;
841         ir->mask_keyup   = mask_keyup;
842         ir->polling      = polling;
843         ir->rc5_gpio     = rc5_gpio;
844         ir->nec_gpio     = nec_gpio;
845         ir->raw_decode   = raw_decode;
846
847         /* init input device */
848         snprintf(ir->name, sizeof(ir->name), "saa7134 IR (%s)",
849                  saa7134_boards[dev->board].name);
850         snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
851                  pci_name(dev->pci));
852
853
854         ir->props.priv = dev;
855         ir->props.open = saa7134_ir_open;
856         ir->props.close = saa7134_ir_close;
857
858         if (raw_decode)
859                 ir->props.driver_type = RC_DRIVER_IR_RAW;
860
861         if (!raw_decode && allow_protocol_change) {
862                 ir->props.allowed_protos = IR_TYPE_RC5 | IR_TYPE_NEC;
863                 ir->props.change_protocol = saa7134_ir_change_protocol;
864         }
865
866         err = ir_input_init(input_dev, &ir->ir, ir_type);
867         if (err < 0)
868                 goto err_out_free;
869
870         input_dev->name = ir->name;
871         input_dev->phys = ir->phys;
872         input_dev->id.bustype = BUS_PCI;
873         input_dev->id.version = 1;
874         if (dev->pci->subsystem_vendor) {
875                 input_dev->id.vendor  = dev->pci->subsystem_vendor;
876                 input_dev->id.product = dev->pci->subsystem_device;
877         } else {
878                 input_dev->id.vendor  = dev->pci->vendor;
879                 input_dev->id.product = dev->pci->device;
880         }
881         input_dev->dev.parent = &dev->pci->dev;
882
883         err = ir_input_register(ir->dev, ir_codes, &ir->props, MODULE_NAME);
884         if (err)
885                 goto err_out_free;
886
887         /* the remote isn't as bouncy as a keyboard */
888         ir->dev->rep[REP_DELAY] = repeat_delay;
889         ir->dev->rep[REP_PERIOD] = repeat_period;
890
891         return 0;
892
893 err_out_free:
894         dev->remote = NULL;
895         kfree(ir);
896         return err;
897 }
898
899 void saa7134_input_fini(struct saa7134_dev *dev)
900 {
901         if (NULL == dev->remote)
902                 return;
903
904         saa7134_ir_stop(dev);
905         ir_input_unregister(dev->remote->dev);
906         kfree(dev->remote);
907         dev->remote = NULL;
908 }
909
910 void saa7134_probe_i2c_ir(struct saa7134_dev *dev)
911 {
912         struct i2c_board_info info;
913
914         struct i2c_msg msg_msi = {
915                 .addr = 0x50,
916                 .flags = I2C_M_RD,
917                 .len = 0,
918                 .buf = NULL,
919         };
920
921         int rc;
922
923         if (disable_ir) {
924                 dprintk("IR has been disabled, not probing for i2c remote\n");
925                 return;
926         }
927
928         memset(&info, 0, sizeof(struct i2c_board_info));
929         memset(&dev->init_data, 0, sizeof(dev->init_data));
930         strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
931
932         switch (dev->board) {
933         case SAA7134_BOARD_PINNACLE_PCTV_110i:
934         case SAA7134_BOARD_PINNACLE_PCTV_310i:
935                 dev->init_data.name = "Pinnacle PCTV";
936                 if (pinnacle_remote == 0) {
937                         dev->init_data.get_key = get_key_pinnacle_color;
938                         dev->init_data.ir_codes = RC_MAP_PINNACLE_COLOR;
939                         info.addr = 0x47;
940                 } else {
941                         dev->init_data.get_key = get_key_pinnacle_grey;
942                         dev->init_data.ir_codes = RC_MAP_PINNACLE_GREY;
943                         info.addr = 0x47;
944                 }
945                 break;
946         case SAA7134_BOARD_UPMOST_PURPLE_TV:
947                 dev->init_data.name = "Purple TV";
948                 dev->init_data.get_key = get_key_purpletv;
949                 dev->init_data.ir_codes = RC_MAP_PURPLETV;
950                 info.addr = 0x7a;
951                 break;
952         case SAA7134_BOARD_MSI_TVATANYWHERE_PLUS:
953                 dev->init_data.name = "MSI TV@nywhere Plus";
954                 dev->init_data.get_key = get_key_msi_tvanywhere_plus;
955                 dev->init_data.ir_codes = RC_MAP_MSI_TVANYWHERE_PLUS;
956                 info.addr = 0x30;
957                 /* MSI TV@nywhere Plus controller doesn't seem to
958                    respond to probes unless we read something from
959                    an existing device. Weird...
960                    REVISIT: might no longer be needed */
961                 rc = i2c_transfer(&dev->i2c_adap, &msg_msi, 1);
962                 dprintk(KERN_DEBUG "probe 0x%02x @ %s: %s\n",
963                         msg_msi.addr, dev->i2c_adap.name,
964                         (1 == rc) ? "yes" : "no");
965                 break;
966         case SAA7134_BOARD_HAUPPAUGE_HVR1110:
967                 dev->init_data.name = "HVR 1110";
968                 dev->init_data.get_key = get_key_hvr1110;
969                 dev->init_data.ir_codes = RC_MAP_HAUPPAUGE_NEW;
970                 info.addr = 0x71;
971                 break;
972         case SAA7134_BOARD_BEHOLD_607FM_MK3:
973         case SAA7134_BOARD_BEHOLD_607FM_MK5:
974         case SAA7134_BOARD_BEHOLD_609FM_MK3:
975         case SAA7134_BOARD_BEHOLD_609FM_MK5:
976         case SAA7134_BOARD_BEHOLD_607RDS_MK3:
977         case SAA7134_BOARD_BEHOLD_607RDS_MK5:
978         case SAA7134_BOARD_BEHOLD_609RDS_MK3:
979         case SAA7134_BOARD_BEHOLD_609RDS_MK5:
980         case SAA7134_BOARD_BEHOLD_M6:
981         case SAA7134_BOARD_BEHOLD_M63:
982         case SAA7134_BOARD_BEHOLD_M6_EXTRA:
983         case SAA7134_BOARD_BEHOLD_H6:
984         case SAA7134_BOARD_BEHOLD_X7:
985                 dev->init_data.name = "BeholdTV";
986                 dev->init_data.get_key = get_key_beholdm6xx;
987                 dev->init_data.ir_codes = RC_MAP_BEHOLD;
988                 dev->init_data.type = IR_TYPE_NEC;
989                 info.addr = 0x2d;
990                 break;
991         case SAA7134_BOARD_AVERMEDIA_CARDBUS_501:
992         case SAA7134_BOARD_AVERMEDIA_CARDBUS_506:
993                 info.addr = 0x40;
994                 break;
995         case SAA7134_BOARD_FLYDVB_TRIO:
996                 dev->init_data.name = "FlyDVB Trio";
997                 dev->init_data.get_key = get_key_flydvb_trio;
998                 dev->init_data.ir_codes = RC_MAP_FLYDVB;
999                 info.addr = 0x0b;
1000                 break;
1001         default:
1002                 dprintk("No I2C IR support for board %x\n", dev->board);
1003                 return;
1004         }
1005
1006         if (dev->init_data.name)
1007                 info.platform_data = &dev->init_data;
1008         i2c_new_device(&dev->i2c_adap, &info);
1009 }
1010
1011 static int saa7134_raw_decode_irq(struct saa7134_dev *dev)
1012 {
1013         struct card_ir  *ir = dev->remote;
1014         unsigned long   timeout;
1015         int space;
1016
1017         /* Generate initial event */
1018         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1019         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1020         space = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2) & ir->mask_keydown;
1021         ir_raw_event_store_edge(dev->remote->dev, space ? IR_SPACE : IR_PULSE);
1022
1023
1024         /*
1025          * Wait 15 ms from the start of the first IR event before processing
1026          * the event. This time is enough for NEC protocol. May need adjustments
1027          * to work with other protocols.
1028          */
1029         if (!ir->active) {
1030                 timeout = jiffies + jiffies_to_msecs(15);
1031                 mod_timer(&ir->timer_end, timeout);
1032                 ir->active = 1;
1033         }
1034
1035         return 1;
1036 }
1037
1038 static int saa7134_rc5_irq(struct saa7134_dev *dev)
1039 {
1040         struct card_ir *ir = dev->remote;
1041         struct timeval tv;
1042         u32 gap;
1043         unsigned long current_jiffies, timeout;
1044
1045         /* get time of bit */
1046         current_jiffies = jiffies;
1047         do_gettimeofday(&tv);
1048
1049         /* avoid overflow with gap >1s */
1050         if (tv.tv_sec - ir->base_time.tv_sec > 1) {
1051                 gap = 200000;
1052         } else {
1053                 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
1054                     tv.tv_usec - ir->base_time.tv_usec;
1055         }
1056
1057         /* active code => add bit */
1058         if (ir->active) {
1059                 /* only if in the code (otherwise spurious IRQ or timer
1060                    late) */
1061                 if (ir->last_bit < 28) {
1062                         ir->last_bit = (gap - ir_rc5_remote_gap / 2) /
1063                             ir_rc5_remote_gap;
1064                         ir->code |= 1 << ir->last_bit;
1065                 }
1066                 /* starting new code */
1067         } else {
1068                 ir->active = 1;
1069                 ir->code = 0;
1070                 ir->base_time = tv;
1071                 ir->last_bit = 0;
1072
1073                 timeout = current_jiffies + (500 + 30 * HZ) / 1000;
1074                 mod_timer(&ir->timer_end, timeout);
1075         }
1076
1077         return 1;
1078 }
1079
1080 /* On NEC protocol, One has 2.25 ms, and zero has 1.125 ms
1081    The first pulse (start) has 9 + 4.5 ms
1082  */
1083
1084 static void saa7134_nec_timer(unsigned long data)
1085 {
1086         struct saa7134_dev *dev = (struct saa7134_dev *) data;
1087         struct card_ir *ir = dev->remote;
1088
1089         dprintk("Cancel key repeat\n");
1090
1091         ir_input_nokey(ir->dev, &ir->ir);
1092 }
1093
1094 static void nec_task(unsigned long data)
1095 {
1096         struct saa7134_dev *dev = (struct saa7134_dev *) data;
1097         struct card_ir *ir;
1098         struct timeval tv;
1099         int count, pulse, oldpulse, gap;
1100         u32 ircode = 0, not_code = 0;
1101         int ngap = 0;
1102
1103         if (!data) {
1104                 printk(KERN_ERR "saa713x/ir: Can't recover dev struct\n");
1105                 /* GPIO will be kept disabled */
1106                 return;
1107         }
1108
1109         ir = dev->remote;
1110
1111         /* rising SAA7134_GPIO_GPRESCAN reads the status */
1112         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1113         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1114
1115         oldpulse = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2) & ir->mask_keydown;
1116         pulse = oldpulse;
1117
1118         do_gettimeofday(&tv);
1119         ir->base_time = tv;
1120
1121         /* Decode NEC pulsecode. This code can take up to 76.5 ms to run.
1122            Unfortunately, using IRQ to decode pulse didn't work, since it uses
1123            a pulse train of 38KHz. This means one pulse on each 52 us
1124          */
1125         do {
1126                 /* Wait until the end of pulse/space or 5 ms */
1127                 for (count = 0; count < 500; count++)  {
1128                         udelay(10);
1129                         /* rising SAA7134_GPIO_GPRESCAN reads the status */
1130                         saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1131                         saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
1132                         pulse = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2)
1133                                 & ir->mask_keydown;
1134                         if (pulse != oldpulse)
1135                                 break;
1136                 }
1137
1138                 do_gettimeofday(&tv);
1139                 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
1140                                 tv.tv_usec - ir->base_time.tv_usec;
1141
1142                 if (!pulse) {
1143                         /* Bit 0 has 560 us, while bit 1 has 1120 us.
1144                            Do something only if bit == 1
1145                          */
1146                         if (ngap && (gap > 560 + 280)) {
1147                                 unsigned int shift = ngap - 1;
1148
1149                                 /* Address first, then command */
1150                                 if (shift < 8) {
1151                                         shift += 8;
1152                                         ircode |= 1 << shift;
1153                                 } else if (shift < 16) {
1154                                         not_code |= 1 << shift;
1155                                 } else if (shift < 24) {
1156                                         shift -= 16;
1157                                         ircode |= 1 << shift;
1158                                 } else {
1159                                         shift -= 24;
1160                                         not_code |= 1 << shift;
1161                                 }
1162                         }
1163                         ngap++;
1164                 }
1165
1166
1167                 ir->base_time = tv;
1168
1169                 /* TIMEOUT - Long pulse */
1170                 if (gap >= 5000)
1171                         break;
1172                 oldpulse = pulse;
1173         } while (ngap < 32);
1174
1175         if (ngap == 32) {
1176                 /* FIXME: should check if not_code == ~ircode */
1177                 ir->code = ir_extract_bits(ircode, ir->mask_keycode);
1178
1179                 dprintk("scancode = 0x%02x (code = 0x%02x, notcode= 0x%02x)\n",
1180                          ir->code, ircode, not_code);
1181
1182                 ir_input_keydown(ir->dev, &ir->ir, ir->code);
1183         } else
1184                 dprintk("Repeat last key\n");
1185
1186         /* Keep repeating the last key */
1187         mod_timer(&ir->timer_keyup, jiffies + msecs_to_jiffies(150));
1188
1189         saa_setl(SAA7134_IRQ2, SAA7134_IRQ2_INTE_GPIO18_P);
1190 }
1191
1192 static int saa7134_nec_irq(struct saa7134_dev *dev)
1193 {
1194         struct card_ir *ir = dev->remote;
1195
1196         saa_clearl(SAA7134_IRQ2, SAA7134_IRQ2_INTE_GPIO18_P);
1197         tasklet_schedule(&ir->tlet);
1198
1199         return 1;
1200 }