3 * handle saa7134 IR remotes via linux kernel input layer.
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.
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.
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
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/delay.h>
24 #include <linux/interrupt.h>
25 #include <linux/slab.h>
27 #include "saa7134-reg.h"
30 #define MODULE_NAME "saa7134"
32 static unsigned int disable_ir
;
33 module_param(disable_ir
, int, 0444);
34 MODULE_PARM_DESC(disable_ir
,"disable infrared remote support");
36 static unsigned int ir_debug
;
37 module_param(ir_debug
, int, 0644);
38 MODULE_PARM_DESC(ir_debug
,"enable debug messages [IR]");
40 static int pinnacle_remote
;
41 module_param(pinnacle_remote
, int, 0644); /* Choose Pinnacle PCTV remote */
42 MODULE_PARM_DESC(pinnacle_remote
, "Specify Pinnacle PCTV remote: 0=coloured, 1=grey (defaults to 0)");
44 #define dprintk(fmt, arg...) if (ir_debug) \
45 printk(KERN_DEBUG "%s/ir: " fmt, dev->name , ## arg)
46 #define i2cdprintk(fmt, arg...) if (ir_debug) \
47 printk(KERN_DEBUG "%s/ir: " fmt, ir->name , ## arg)
49 /* Helper function for raw decoding at GPIO16 or GPIO18 */
50 static int saa7134_raw_decode_irq(struct saa7134_dev
*dev
);
52 /* -------------------- GPIO generic keycode builder -------------------- */
54 static int build_key(struct saa7134_dev
*dev
)
56 struct saa7134_card_ir
*ir
= dev
->remote
;
59 /* here comes the additional handshake steps for some cards */
61 case SAA7134_BOARD_GOTVIEW_7135
:
62 saa_setb(SAA7134_GPIO_GPSTATUS1
, 0x80);
63 saa_clearb(SAA7134_GPIO_GPSTATUS1
, 0x80);
66 /* rising SAA7134_GPIO_GPRESCAN reads the status */
67 saa_clearb(SAA7134_GPIO_GPMODE3
,SAA7134_GPIO_GPRESCAN
);
68 saa_setb(SAA7134_GPIO_GPMODE3
,SAA7134_GPIO_GPRESCAN
);
70 gpio
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2);
72 if (ir
->last_gpio
== gpio
)
77 data
= ir_extract_bits(gpio
, ir
->mask_keycode
);
78 dprintk("build_key gpio=0x%x mask=0x%x data=%d\n",
79 gpio
, ir
->mask_keycode
, data
);
82 case SAA7134_BOARD_KWORLD_PLUS_TV_ANALOG
:
83 if (data
== ir
->mask_keycode
)
86 rc_keydown_notimeout(ir
->dev
, data
, 0);
91 if ((ir
->mask_keydown
&& (0 != (gpio
& ir
->mask_keydown
))) ||
92 (ir
->mask_keyup
&& (0 == (gpio
& ir
->mask_keyup
)))) {
93 rc_keydown_notimeout(ir
->dev
, data
, 0);
98 else { /* IRQ driven mode - handle key press and release in one go */
99 if ((ir
->mask_keydown
&& (0 != (gpio
& ir
->mask_keydown
))) ||
100 (ir
->mask_keyup
&& (0 == (gpio
& ir
->mask_keyup
)))) {
101 rc_keydown_notimeout(ir
->dev
, data
, 0);
109 /* --------------------- Chip specific I2C key builders ----------------- */
111 static int get_key_flydvb_trio(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
117 /* We need this to access GPI Used by the saa_readl macro. */
118 struct saa7134_dev
*dev
= ir
->c
->adapter
->algo_data
;
121 i2cdprintk("get_key_flydvb_trio: "
122 "ir->c->adapter->algo_data is NULL!\n");
126 /* rising SAA7134_GPIGPRESCAN reads the status */
127 saa_clearb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
128 saa_setb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
130 gpio
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2);
133 return 0; /* No button press */
135 /* No button press - only before first key pressed */
140 /* weak up the IR chip */
143 while (1 != i2c_master_send(ir
->c
, &b
, 1)) {
144 if ((attempt
++) < 10) {
146 * wait a bit for next attempt -
147 * I don't know how make it better
152 i2cdprintk("send wake up byte to pic16C505 (IR chip)"
153 "failed %dx\n", attempt
);
156 if (1 != i2c_master_recv(ir
->c
, &b
, 1)) {
157 i2cdprintk("read error\n");
166 static int get_key_msi_tvanywhere_plus(struct IR_i2c
*ir
, u32
*ir_key
,
172 /* <dev> is needed to access GPIO. Used by the saa_readl macro. */
173 struct saa7134_dev
*dev
= ir
->c
->adapter
->algo_data
;
175 i2cdprintk("get_key_msi_tvanywhere_plus: "
176 "ir->c->adapter->algo_data is NULL!\n");
180 /* rising SAA7134_GPIO_GPRESCAN reads the status */
182 saa_clearb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
183 saa_setb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
185 gpio
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2);
187 /* GPIO&0x40 is pulsed low when a button is pressed. Don't do
188 I2C receive if gpio&0x40 is not low. */
191 return 0; /* No button press */
193 /* GPIO says there is a button press. Get it. */
195 if (1 != i2c_master_recv(ir
->c
, &b
, 1)) {
196 i2cdprintk("read error\n");
200 /* No button press */
207 dprintk("get_key_msi_tvanywhere_plus: Key = 0x%02X\n", b
);
213 /* copied and modified from get_key_msi_tvanywhere_plus() */
214 static int get_key_kworld_pc150u(struct IR_i2c
*ir
, u32
*ir_key
,
220 /* <dev> is needed to access GPIO. Used by the saa_readl macro. */
221 struct saa7134_dev
*dev
= ir
->c
->adapter
->algo_data
;
223 i2cdprintk("get_key_kworld_pc150u: "
224 "ir->c->adapter->algo_data is NULL!\n");
228 /* rising SAA7134_GPIO_GPRESCAN reads the status */
230 saa_clearb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
231 saa_setb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
233 gpio
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2);
235 /* GPIO&0x100 is pulsed low when a button is pressed. Don't do
236 I2C receive if gpio&0x100 is not low. */
239 return 0; /* No button press */
241 /* GPIO says there is a button press. Get it. */
243 if (1 != i2c_master_recv(ir
->c
, &b
, 1)) {
244 i2cdprintk("read error\n");
248 /* No button press */
255 dprintk("get_key_kworld_pc150u: Key = 0x%02X\n", b
);
261 static int get_key_purpletv(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
266 if (1 != i2c_master_recv(ir
->c
, &b
, 1)) {
267 i2cdprintk("read error\n");
271 /* no button press */
284 static int get_key_hvr1110(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
286 unsigned char buf
[5];
289 if (5 != i2c_master_recv(ir
->c
, buf
, 5))
292 /* Check if some key were pressed */
293 if (!(buf
[0] & 0x80))
297 * buf[3] & 0x80 is always high.
298 * buf[3] & 0x40 is a parity bit. A repeat event is marked
299 * by preserving it into two separate readings
300 * buf[4] bits 0 and 1, and buf[1] and buf[2] are always
303 *ir_key
= 0x1fff & ((buf
[3] << 8) | (buf
[4] >> 2));
309 static int get_key_beholdm6xx(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
311 unsigned char data
[12];
314 struct saa7134_dev
*dev
= ir
->c
->adapter
->algo_data
;
316 /* rising SAA7134_GPIO_GPRESCAN reads the status */
317 saa_clearb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
318 saa_setb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
320 gpio
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2);
322 if (0x400000 & ~gpio
)
323 return 0; /* No button press */
325 ir
->c
->addr
= 0x5a >> 1;
327 if (12 != i2c_master_recv(ir
->c
, data
, 12)) {
328 i2cdprintk("read error\n");
332 if (data
[9] != (unsigned char)(~data
[8]))
335 *ir_raw
= ((data
[10] << 16) | (data
[11] << 8) | (data
[9] << 0));
341 /* Common (grey or coloured) pinnacle PCTV remote handling
344 static int get_key_pinnacle(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
,
345 int parity_offset
, int marker
, int code_modulo
)
348 unsigned int start
= 0,parity
= 0,code
= 0;
351 if (4 != i2c_master_recv(ir
->c
, b
, 4)) {
352 i2cdprintk("read error\n");
356 for (start
= 0; start
< ARRAY_SIZE(b
); start
++) {
357 if (b
[start
] == marker
) {
358 code
=b
[(start
+parity_offset
+ 1) % 4];
359 parity
=b
[(start
+parity_offset
) % 4];
368 if (ir
->old
== parity
)
373 /* drop special codes when a key is held down a long time for the grey controller
374 In this case, the second bit of the code is asserted */
375 if (marker
== 0xfe && (code
& 0x40))
383 i2cdprintk("Pinnacle PCTV key %02x\n", code
);
388 /* The grey pinnacle PCTV remote
390 * There are one issue with this remote:
391 * - I2c packet does not change when the same key is pressed quickly. The workaround
392 * is to hold down each key for about half a second, so that another code is generated
393 * in the i2c packet, and the function can distinguish key presses.
395 * Sylvain Pasche <sylvain.pasche@gmail.com>
397 static int get_key_pinnacle_grey(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
400 return get_key_pinnacle(ir
, ir_key
, ir_raw
, 1, 0xfe, 0xff);
404 /* The new pinnacle PCTV remote (with the colored buttons)
406 * Ricardo Cerqueira <v4l@cerqueira.org>
408 static int get_key_pinnacle_color(struct IR_i2c
*ir
, u32
*ir_key
, u32
*ir_raw
)
410 /* code_modulo parameter (0x88) is used to reduce code value to fit inside IR_KEYTAB_SIZE
412 * this is the only value that results in 42 unique
416 return get_key_pinnacle(ir
, ir_key
, ir_raw
, 2, 0x80, 0x88);
419 void saa7134_input_irq(struct saa7134_dev
*dev
)
421 struct saa7134_card_ir
*ir
;
423 if (!dev
|| !dev
->remote
)
430 if (!ir
->polling
&& !ir
->raw_decode
) {
432 } else if (ir
->raw_decode
) {
433 saa7134_raw_decode_irq(dev
);
437 static void saa7134_input_timer(unsigned long data
)
439 struct saa7134_dev
*dev
= (struct saa7134_dev
*)data
;
440 struct saa7134_card_ir
*ir
= dev
->remote
;
443 mod_timer(&ir
->timer
, jiffies
+ msecs_to_jiffies(ir
->polling
));
446 static void ir_raw_decode_timer_end(unsigned long data
)
448 struct saa7134_dev
*dev
= (struct saa7134_dev
*)data
;
450 ir_raw_event_handle(dev
->remote
->dev
);
453 static int __saa7134_ir_start(void *priv
)
455 struct saa7134_dev
*dev
= priv
;
456 struct saa7134_card_ir
*ir
;
458 if (!dev
|| !dev
->remote
)
465 /* Moved here from saa7134_input_init1() because the latter
466 * is not called on device resume */
467 switch (dev
->board
) {
468 case SAA7134_BOARD_MD2819
:
469 case SAA7134_BOARD_KWORLD_VSTREAM_XPERT
:
470 case SAA7134_BOARD_AVERMEDIA_305
:
471 case SAA7134_BOARD_AVERMEDIA_307
:
472 case SAA7134_BOARD_AVERMEDIA_STUDIO_305
:
473 case SAA7134_BOARD_AVERMEDIA_STUDIO_505
:
474 case SAA7134_BOARD_AVERMEDIA_STUDIO_307
:
475 case SAA7134_BOARD_AVERMEDIA_STUDIO_507
:
476 case SAA7134_BOARD_AVERMEDIA_STUDIO_507UA
:
477 case SAA7134_BOARD_AVERMEDIA_GO_007_FM
:
478 case SAA7134_BOARD_AVERMEDIA_M102
:
479 case SAA7134_BOARD_AVERMEDIA_GO_007_FM_PLUS
:
480 /* Without this we won't receive key up events */
481 saa_setb(SAA7134_GPIO_GPMODE0
, 0x4);
482 saa_setb(SAA7134_GPIO_GPSTATUS0
, 0x4);
484 case SAA7134_BOARD_AVERMEDIA_777
:
485 case SAA7134_BOARD_AVERMEDIA_A16AR
:
486 /* Without this we won't receive key up events */
487 saa_setb(SAA7134_GPIO_GPMODE1
, 0x1);
488 saa_setb(SAA7134_GPIO_GPSTATUS1
, 0x1);
490 case SAA7134_BOARD_AVERMEDIA_A16D
:
491 /* Without this we won't receive key up events */
492 saa_setb(SAA7134_GPIO_GPMODE1
, 0x1);
493 saa_setb(SAA7134_GPIO_GPSTATUS1
, 0x1);
495 case SAA7134_BOARD_GOTVIEW_7135
:
496 saa_setb(SAA7134_GPIO_GPMODE1
, 0x80);
503 setup_timer(&ir
->timer
, saa7134_input_timer
,
505 ir
->timer
.expires
= jiffies
+ HZ
;
506 add_timer(&ir
->timer
);
507 } else if (ir
->raw_decode
) {
508 /* set timer_end for code completion */
509 setup_timer(&ir
->timer
, ir_raw_decode_timer_end
,
516 static void __saa7134_ir_stop(void *priv
)
518 struct saa7134_dev
*dev
= priv
;
519 struct saa7134_card_ir
*ir
;
521 if (!dev
|| !dev
->remote
)
528 if (ir
->polling
|| ir
->raw_decode
)
529 del_timer_sync(&ir
->timer
);
536 int saa7134_ir_start(struct saa7134_dev
*dev
)
538 if (dev
->remote
->users
)
539 return __saa7134_ir_start(dev
);
544 void saa7134_ir_stop(struct saa7134_dev
*dev
)
546 if (dev
->remote
->users
)
547 __saa7134_ir_stop(dev
);
550 static int saa7134_ir_open(struct rc_dev
*rc
)
552 struct saa7134_dev
*dev
= rc
->priv
;
554 dev
->remote
->users
++;
555 return __saa7134_ir_start(dev
);
558 static void saa7134_ir_close(struct rc_dev
*rc
)
560 struct saa7134_dev
*dev
= rc
->priv
;
562 dev
->remote
->users
--;
563 if (!dev
->remote
->users
)
564 __saa7134_ir_stop(dev
);
567 int saa7134_input_init1(struct saa7134_dev
*dev
)
569 struct saa7134_card_ir
*ir
;
571 char *ir_codes
= NULL
;
572 u32 mask_keycode
= 0;
573 u32 mask_keydown
= 0;
575 unsigned polling
= 0;
576 bool raw_decode
= false;
579 if (dev
->has_remote
!= SAA7134_REMOTE_GPIO
)
584 /* detect & configure */
585 switch (dev
->board
) {
586 case SAA7134_BOARD_FLYVIDEO2000
:
587 case SAA7134_BOARD_FLYVIDEO3000
:
588 case SAA7134_BOARD_FLYTVPLATINUM_FM
:
589 case SAA7134_BOARD_FLYTVPLATINUM_MINI2
:
590 case SAA7134_BOARD_ROVERMEDIA_LINK_PRO_FM
:
591 ir_codes
= RC_MAP_FLYVIDEO
;
592 mask_keycode
= 0xEC00000;
593 mask_keydown
= 0x0040000;
595 case SAA7134_BOARD_CINERGY400
:
596 case SAA7134_BOARD_CINERGY600
:
597 case SAA7134_BOARD_CINERGY600_MK3
:
598 ir_codes
= RC_MAP_CINERGY
;
599 mask_keycode
= 0x00003f;
600 mask_keyup
= 0x040000;
602 case SAA7134_BOARD_ECS_TVP3XP
:
603 case SAA7134_BOARD_ECS_TVP3XP_4CB5
:
604 ir_codes
= RC_MAP_EZTV
;
605 mask_keycode
= 0x00017c;
606 mask_keyup
= 0x000002;
609 case SAA7134_BOARD_KWORLD_XPERT
:
610 case SAA7134_BOARD_AVACSSMARTTV
:
611 ir_codes
= RC_MAP_PIXELVIEW
;
612 mask_keycode
= 0x00001F;
613 mask_keyup
= 0x000020;
616 case SAA7134_BOARD_MD2819
:
617 case SAA7134_BOARD_KWORLD_VSTREAM_XPERT
:
618 case SAA7134_BOARD_AVERMEDIA_305
:
619 case SAA7134_BOARD_AVERMEDIA_307
:
620 case SAA7134_BOARD_AVERMEDIA_STUDIO_305
:
621 case SAA7134_BOARD_AVERMEDIA_STUDIO_505
:
622 case SAA7134_BOARD_AVERMEDIA_STUDIO_307
:
623 case SAA7134_BOARD_AVERMEDIA_STUDIO_507
:
624 case SAA7134_BOARD_AVERMEDIA_STUDIO_507UA
:
625 case SAA7134_BOARD_AVERMEDIA_GO_007_FM
:
626 case SAA7134_BOARD_AVERMEDIA_M102
:
627 case SAA7134_BOARD_AVERMEDIA_GO_007_FM_PLUS
:
628 ir_codes
= RC_MAP_AVERMEDIA
;
629 mask_keycode
= 0x0007C8;
630 mask_keydown
= 0x000010;
632 /* GPIO stuff moved to __saa7134_ir_start() */
634 case SAA7134_BOARD_AVERMEDIA_M135A
:
635 ir_codes
= RC_MAP_AVERMEDIA_M135A
;
636 mask_keydown
= 0x0040000; /* Enable GPIO18 line on both edges */
637 mask_keyup
= 0x0040000;
638 mask_keycode
= 0xffff;
641 case SAA7134_BOARD_AVERMEDIA_M733A
:
642 ir_codes
= RC_MAP_AVERMEDIA_M733A_RM_K6
;
643 mask_keydown
= 0x0040000;
644 mask_keyup
= 0x0040000;
645 mask_keycode
= 0xffff;
648 case SAA7134_BOARD_AVERMEDIA_777
:
649 case SAA7134_BOARD_AVERMEDIA_A16AR
:
650 ir_codes
= RC_MAP_AVERMEDIA
;
651 mask_keycode
= 0x02F200;
652 mask_keydown
= 0x000400;
654 /* GPIO stuff moved to __saa7134_ir_start() */
656 case SAA7134_BOARD_AVERMEDIA_A16D
:
657 ir_codes
= RC_MAP_AVERMEDIA_A16D
;
658 mask_keycode
= 0x02F200;
659 mask_keydown
= 0x000400;
660 polling
= 50; /* ms */
661 /* GPIO stuff moved to __saa7134_ir_start() */
663 case SAA7134_BOARD_KWORLD_TERMINATOR
:
664 ir_codes
= RC_MAP_PIXELVIEW
;
665 mask_keycode
= 0x00001f;
666 mask_keyup
= 0x000060;
669 case SAA7134_BOARD_MANLI_MTV001
:
670 case SAA7134_BOARD_MANLI_MTV002
:
671 ir_codes
= RC_MAP_MANLI
;
672 mask_keycode
= 0x001f00;
673 mask_keyup
= 0x004000;
674 polling
= 50; /* ms */
676 case SAA7134_BOARD_BEHOLD_409FM
:
677 case SAA7134_BOARD_BEHOLD_401
:
678 case SAA7134_BOARD_BEHOLD_403
:
679 case SAA7134_BOARD_BEHOLD_403FM
:
680 case SAA7134_BOARD_BEHOLD_405
:
681 case SAA7134_BOARD_BEHOLD_405FM
:
682 case SAA7134_BOARD_BEHOLD_407
:
683 case SAA7134_BOARD_BEHOLD_407FM
:
684 case SAA7134_BOARD_BEHOLD_409
:
685 case SAA7134_BOARD_BEHOLD_505FM
:
686 case SAA7134_BOARD_BEHOLD_505RDS_MK5
:
687 case SAA7134_BOARD_BEHOLD_505RDS_MK3
:
688 case SAA7134_BOARD_BEHOLD_507_9FM
:
689 case SAA7134_BOARD_BEHOLD_507RDS_MK3
:
690 case SAA7134_BOARD_BEHOLD_507RDS_MK5
:
691 ir_codes
= RC_MAP_MANLI
;
692 mask_keycode
= 0x003f00;
693 mask_keyup
= 0x004000;
694 polling
= 50; /* ms */
696 case SAA7134_BOARD_BEHOLD_COLUMBUS_TVFM
:
697 ir_codes
= RC_MAP_BEHOLD_COLUMBUS
;
698 mask_keycode
= 0x003f00;
699 mask_keyup
= 0x004000;
702 case SAA7134_BOARD_SEDNA_PC_TV_CARDBUS
:
703 ir_codes
= RC_MAP_PCTV_SEDNA
;
704 mask_keycode
= 0x001f00;
705 mask_keyup
= 0x004000;
708 case SAA7134_BOARD_GOTVIEW_7135
:
709 ir_codes
= RC_MAP_GOTVIEW7135
;
710 mask_keycode
= 0x0003CC;
711 mask_keydown
= 0x000010;
712 polling
= 5; /* ms */
713 /* GPIO stuff moved to __saa7134_ir_start() */
715 case SAA7134_BOARD_VIDEOMATE_TV_PVR
:
716 case SAA7134_BOARD_VIDEOMATE_GOLD_PLUS
:
717 case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII
:
718 ir_codes
= RC_MAP_VIDEOMATE_TV_PVR
;
719 mask_keycode
= 0x00003F;
720 mask_keyup
= 0x400000;
723 case SAA7134_BOARD_PROTEUS_2309
:
724 ir_codes
= RC_MAP_PROTEUS_2309
;
725 mask_keycode
= 0x00007F;
726 mask_keyup
= 0x000080;
729 case SAA7134_BOARD_VIDEOMATE_DVBT_300
:
730 case SAA7134_BOARD_VIDEOMATE_DVBT_200
:
731 ir_codes
= RC_MAP_VIDEOMATE_TV_PVR
;
732 mask_keycode
= 0x003F00;
733 mask_keyup
= 0x040000;
735 case SAA7134_BOARD_FLYDVBS_LR300
:
736 case SAA7134_BOARD_FLYDVBT_LR301
:
737 case SAA7134_BOARD_FLYDVBTDUO
:
738 ir_codes
= RC_MAP_FLYDVB
;
739 mask_keycode
= 0x0001F00;
740 mask_keydown
= 0x0040000;
742 case SAA7134_BOARD_ASUSTeK_P7131_DUAL
:
743 case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA
:
744 case SAA7134_BOARD_ASUSTeK_P7131_ANALOG
:
745 ir_codes
= RC_MAP_ASUS_PC39
;
746 mask_keydown
= 0x0040000; /* Enable GPIO18 line on both edges */
747 mask_keyup
= 0x0040000;
748 mask_keycode
= 0xffff;
751 case SAA7134_BOARD_ASUSTeK_PS3_100
:
752 ir_codes
= RC_MAP_ASUS_PS3_100
;
753 mask_keydown
= 0x0040000;
754 mask_keyup
= 0x0040000;
755 mask_keycode
= 0xffff;
758 case SAA7134_BOARD_ENCORE_ENLTV
:
759 case SAA7134_BOARD_ENCORE_ENLTV_FM
:
760 ir_codes
= RC_MAP_ENCORE_ENLTV
;
761 mask_keycode
= 0x00007f;
762 mask_keyup
= 0x040000;
765 case SAA7134_BOARD_ENCORE_ENLTV_FM53
:
766 case SAA7134_BOARD_ENCORE_ENLTV_FM3
:
767 ir_codes
= RC_MAP_ENCORE_ENLTV_FM53
;
768 mask_keydown
= 0x0040000; /* Enable GPIO18 line on both edges */
769 mask_keyup
= 0x0040000;
770 mask_keycode
= 0xffff;
773 case SAA7134_BOARD_10MOONSTVMASTER3
:
774 ir_codes
= RC_MAP_ENCORE_ENLTV
;
775 mask_keycode
= 0x5f80000;
776 mask_keyup
= 0x8000000;
779 case SAA7134_BOARD_GENIUS_TVGO_A11MCE
:
780 ir_codes
= RC_MAP_GENIUS_TVGO_A11MCE
;
782 mask_keydown
= 0xf00000;
783 polling
= 50; /* ms */
785 case SAA7134_BOARD_REAL_ANGEL_220
:
786 ir_codes
= RC_MAP_REAL_AUDIO_220_32_KEYS
;
787 mask_keycode
= 0x3f00;
789 polling
= 50; /* ms */
791 case SAA7134_BOARD_KWORLD_PLUS_TV_ANALOG
:
792 ir_codes
= RC_MAP_KWORLD_PLUS_TV_ANALOG
;
794 polling
= 40; /* ms */
796 case SAA7134_BOARD_VIDEOMATE_S350
:
797 ir_codes
= RC_MAP_VIDEOMATE_S350
;
798 mask_keycode
= 0x003f00;
799 mask_keydown
= 0x040000;
801 case SAA7134_BOARD_LEADTEK_WINFAST_DTV1000S
:
802 ir_codes
= RC_MAP_WINFAST
;
803 mask_keycode
= 0x5f00;
804 mask_keyup
= 0x020000;
805 polling
= 50; /* ms */
807 case SAA7134_BOARD_VIDEOMATE_M1F
:
808 ir_codes
= RC_MAP_VIDEOMATE_K100
;
809 mask_keycode
= 0x0ff00;
810 mask_keyup
= 0x040000;
812 case SAA7134_BOARD_HAUPPAUGE_HVR1150
:
813 case SAA7134_BOARD_HAUPPAUGE_HVR1120
:
814 ir_codes
= RC_MAP_HAUPPAUGE
;
815 mask_keydown
= 0x0040000; /* Enable GPIO18 line on both edges */
816 mask_keyup
= 0x0040000;
817 mask_keycode
= 0xffff;
821 if (NULL
== ir_codes
) {
822 printk("%s: Oops: IR config error [card=%d]\n",
823 dev
->name
, dev
->board
);
827 ir
= kzalloc(sizeof(*ir
), GFP_KERNEL
);
828 rc
= rc_allocate_device();
837 /* init hardware-specific stuff */
838 ir
->mask_keycode
= mask_keycode
;
839 ir
->mask_keydown
= mask_keydown
;
840 ir
->mask_keyup
= mask_keyup
;
841 ir
->polling
= polling
;
842 ir
->raw_decode
= raw_decode
;
844 /* init input device */
845 snprintf(ir
->name
, sizeof(ir
->name
), "saa7134 IR (%s)",
846 saa7134_boards
[dev
->board
].name
);
847 snprintf(ir
->phys
, sizeof(ir
->phys
), "pci-%s/ir0",
851 rc
->open
= saa7134_ir_open
;
852 rc
->close
= saa7134_ir_close
;
854 rc
->driver_type
= RC_DRIVER_IR_RAW
;
856 rc
->input_name
= ir
->name
;
857 rc
->input_phys
= ir
->phys
;
858 rc
->input_id
.bustype
= BUS_PCI
;
859 rc
->input_id
.version
= 1;
860 if (dev
->pci
->subsystem_vendor
) {
861 rc
->input_id
.vendor
= dev
->pci
->subsystem_vendor
;
862 rc
->input_id
.product
= dev
->pci
->subsystem_device
;
864 rc
->input_id
.vendor
= dev
->pci
->vendor
;
865 rc
->input_id
.product
= dev
->pci
->device
;
867 rc
->dev
.parent
= &dev
->pci
->dev
;
868 rc
->map_name
= ir_codes
;
869 rc
->driver_name
= MODULE_NAME
;
871 err
= rc_register_device(rc
);
884 void saa7134_input_fini(struct saa7134_dev
*dev
)
886 if (NULL
== dev
->remote
)
889 saa7134_ir_stop(dev
);
890 rc_unregister_device(dev
->remote
->dev
);
895 void saa7134_probe_i2c_ir(struct saa7134_dev
*dev
)
897 struct i2c_board_info info
;
898 struct i2c_msg msg_msi
= {
907 dprintk("IR has been disabled, not probing for i2c remote\n");
911 memset(&info
, 0, sizeof(struct i2c_board_info
));
912 memset(&dev
->init_data
, 0, sizeof(dev
->init_data
));
913 strlcpy(info
.type
, "ir_video", I2C_NAME_SIZE
);
915 switch (dev
->board
) {
916 case SAA7134_BOARD_PINNACLE_PCTV_110i
:
917 case SAA7134_BOARD_PINNACLE_PCTV_310i
:
918 dev
->init_data
.name
= "Pinnacle PCTV";
919 if (pinnacle_remote
== 0) {
920 dev
->init_data
.get_key
= get_key_pinnacle_color
;
921 dev
->init_data
.ir_codes
= RC_MAP_PINNACLE_COLOR
;
924 dev
->init_data
.get_key
= get_key_pinnacle_grey
;
925 dev
->init_data
.ir_codes
= RC_MAP_PINNACLE_GREY
;
929 case SAA7134_BOARD_UPMOST_PURPLE_TV
:
930 dev
->init_data
.name
= "Purple TV";
931 dev
->init_data
.get_key
= get_key_purpletv
;
932 dev
->init_data
.ir_codes
= RC_MAP_PURPLETV
;
935 case SAA7134_BOARD_MSI_TVATANYWHERE_PLUS
:
936 dev
->init_data
.name
= "MSI TV@nywhere Plus";
937 dev
->init_data
.get_key
= get_key_msi_tvanywhere_plus
;
938 dev
->init_data
.ir_codes
= RC_MAP_MSI_TVANYWHERE_PLUS
;
940 * MSI TV@nyware Plus requires more frequent polling
941 * otherwise it will miss some keypresses
943 dev
->init_data
.polling_interval
= 50;
945 /* MSI TV@nywhere Plus controller doesn't seem to
946 respond to probes unless we read something from
947 an existing device. Weird...
948 REVISIT: might no longer be needed */
949 rc
= i2c_transfer(&dev
->i2c_adap
, &msg_msi
, 1);
950 dprintk("probe 0x%02x @ %s: %s\n",
951 msg_msi
.addr
, dev
->i2c_adap
.name
,
952 (1 == rc
) ? "yes" : "no");
954 case SAA7134_BOARD_KWORLD_PC150U
:
955 /* copied and modified from MSI TV@nywhere Plus */
956 dev
->init_data
.name
= "Kworld PC150-U";
957 dev
->init_data
.get_key
= get_key_kworld_pc150u
;
958 dev
->init_data
.ir_codes
= RC_MAP_KWORLD_PC150U
;
960 /* MSI TV@nywhere Plus controller doesn't seem to
961 respond to probes unless we read something from
962 an existing device. Weird...
963 REVISIT: might no longer be needed */
964 rc
= i2c_transfer(&dev
->i2c_adap
, &msg_msi
, 1);
965 dprintk("probe 0x%02x @ %s: %s\n",
966 msg_msi
.addr
, dev
->i2c_adap
.name
,
967 (1 == rc
) ? "yes" : "no");
969 case SAA7134_BOARD_HAUPPAUGE_HVR1110
:
970 dev
->init_data
.name
= "HVR 1110";
971 dev
->init_data
.get_key
= get_key_hvr1110
;
972 dev
->init_data
.ir_codes
= RC_MAP_HAUPPAUGE
;
975 case SAA7134_BOARD_BEHOLD_607FM_MK3
:
976 case SAA7134_BOARD_BEHOLD_607FM_MK5
:
977 case SAA7134_BOARD_BEHOLD_609FM_MK3
:
978 case SAA7134_BOARD_BEHOLD_609FM_MK5
:
979 case SAA7134_BOARD_BEHOLD_607RDS_MK3
:
980 case SAA7134_BOARD_BEHOLD_607RDS_MK5
:
981 case SAA7134_BOARD_BEHOLD_609RDS_MK3
:
982 case SAA7134_BOARD_BEHOLD_609RDS_MK5
:
983 case SAA7134_BOARD_BEHOLD_M6
:
984 case SAA7134_BOARD_BEHOLD_M63
:
985 case SAA7134_BOARD_BEHOLD_M6_EXTRA
:
986 case SAA7134_BOARD_BEHOLD_H6
:
987 case SAA7134_BOARD_BEHOLD_X7
:
988 case SAA7134_BOARD_BEHOLD_H7
:
989 case SAA7134_BOARD_BEHOLD_A7
:
990 dev
->init_data
.name
= "BeholdTV";
991 dev
->init_data
.get_key
= get_key_beholdm6xx
;
992 dev
->init_data
.ir_codes
= RC_MAP_BEHOLD
;
993 dev
->init_data
.type
= RC_BIT_NEC
;
996 case SAA7134_BOARD_AVERMEDIA_CARDBUS_501
:
997 case SAA7134_BOARD_AVERMEDIA_CARDBUS_506
:
1000 case SAA7134_BOARD_AVERMEDIA_A706
:
1003 case SAA7134_BOARD_FLYDVB_TRIO
:
1004 dev
->init_data
.name
= "FlyDVB Trio";
1005 dev
->init_data
.get_key
= get_key_flydvb_trio
;
1006 dev
->init_data
.ir_codes
= RC_MAP_FLYDVB
;
1010 dprintk("No I2C IR support for board %x\n", dev
->board
);
1014 if (dev
->init_data
.name
)
1015 info
.platform_data
= &dev
->init_data
;
1016 i2c_new_device(&dev
->i2c_adap
, &info
);
1019 static int saa7134_raw_decode_irq(struct saa7134_dev
*dev
)
1021 struct saa7134_card_ir
*ir
= dev
->remote
;
1022 unsigned long timeout
;
1025 /* Generate initial event */
1026 saa_clearb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
1027 saa_setb(SAA7134_GPIO_GPMODE3
, SAA7134_GPIO_GPRESCAN
);
1028 space
= saa_readl(SAA7134_GPIO_GPSTATUS0
>> 2) & ir
->mask_keydown
;
1029 ir_raw_event_store_edge(dev
->remote
->dev
, space
? IR_SPACE
: IR_PULSE
);
1032 * Wait 15 ms from the start of the first IR event before processing
1033 * the event. This time is enough for NEC protocol. May need adjustments
1034 * to work with other protocols.
1038 if (!timer_pending(&ir
->timer
)) {
1039 timeout
= jiffies
+ msecs_to_jiffies(15);
1040 mod_timer(&ir
->timer
, timeout
);