Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 92498
b: refs/heads/master
c: 7f0dd17
h: refs/heads/master
v: v3
  • Loading branch information
Mauro Carvalho Chehab committed Apr 24, 2008
1 parent e2a0fb4 commit 9355c3b
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ceb63a4fda646faea60e34fa4c3abf8455add013
refs/heads/master: 7f0dd17913eda77961fc8213b64cb8af4a155d3e
45 changes: 45 additions & 0 deletions trunk/drivers/media/common/ir-keymaps.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,51 @@ IR_KEYTAB_TYPE ir_codes_pixelview[IR_KEYTAB_SIZE] = {

EXPORT_SYMBOL_GPL(ir_codes_pixelview);

/*
Mauro Carvalho Chehab <mchehab@infradead.org>
present on PV MPEG 8000GT
*/
IR_KEYTAB_TYPE ir_codes_pixelview_new[IR_KEYTAB_SIZE] = {
[0x3c] = KEY_PAUSE, /* Timeshift */
[0x12] = KEY_POWER,

[0x3d] = KEY_1,
[0x38] = KEY_2,
[0x18] = KEY_3,
[0x35] = KEY_4,
[0x39] = KEY_5,
[0x15] = KEY_6,
[0x36] = KEY_7,
[0x3a] = KEY_8,
[0x1e] = KEY_9,
[0x3e] = KEY_0,

[0x1c] = KEY_AGAIN, /* LOOP */
[0x3f] = KEY_MEDIA, /* Source */
[0x1f] = KEY_LAST, /* +100 */
[0x1b] = KEY_MUTE,

[0x17] = KEY_CHANNELDOWN,
[0x16] = KEY_CHANNELUP,
[0x10] = KEY_VOLUMEUP,
[0x14] = KEY_VOLUMEDOWN,
[0x13] = KEY_ZOOM,

[0x19] = KEY_SHUFFLE, /* SNAPSHOT */
[0x1a] = KEY_SEARCH, /* scan */

[0x37] = KEY_REWIND, /* << */
[0x32] = KEY_RECORD, /* o (red) */
[0x33] = KEY_FORWARD, /* >> */
[0x11] = KEY_STOP, /* square */
[0x3b] = KEY_PLAY, /* > */
[0x30] = KEY_PLAYPAUSE, /* || */

[0x31] = KEY_TV,
[0x34] = KEY_RADIO,
};
EXPORT_SYMBOL_GPL(ir_codes_pixelview_new);

IR_KEYTAB_TYPE ir_codes_nebula[IR_KEYTAB_SIZE] = {
[ 0x00 ] = KEY_0,
[ 0x01 ] = KEY_1,
Expand Down
7 changes: 7 additions & 0 deletions trunk/drivers/media/video/cx88/cx88-input.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,13 @@ int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
ir->mask_keyup = 0x80;
ir->polling = 1; /* ms */
break;
case CX88_BOARD_PROLINK_PV_8000GT:
ir_codes = ir_codes_pixelview_new;
ir->gpio_addr = MO_GP1_IO;
ir->mask_keycode = 0x3f;
ir->mask_keyup = 0x80;
ir->polling = 1; /* ms */
break;
case CX88_BOARD_KWORLD_LTV883:
ir_codes = ir_codes_pixelview;
ir->gpio_addr = MO_GP1_IO;
Expand Down
1 change: 1 addition & 0 deletions trunk/include/media/ir-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ extern IR_KEYTAB_TYPE ir_codes_avermedia[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_avermedia_dvbt[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_apac_viewcomp[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_pixelview[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_pixelview_new[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_nebula[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_dntv_live_dvb_t[IR_KEYTAB_SIZE];
extern IR_KEYTAB_TYPE ir_codes_iodata_bctv7e[IR_KEYTAB_SIZE];
Expand Down

0 comments on commit 9355c3b

Please sign in to comment.