diff options
Diffstat (limited to 'include/media/keycodes/eztv.h')
-rw-r--r-- | include/media/keycodes/eztv.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/include/media/keycodes/eztv.h b/include/media/keycodes/eztv.h new file mode 100644 index 000000000000..030f57a61349 --- /dev/null +++ b/include/media/keycodes/eztv.h | |||
@@ -0,0 +1,72 @@ | |||
1 | /* eztv.h - Keytable for eztv Remote Controller | ||
2 | * | ||
3 | * Imported from ir-keymaps.c | ||
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 | |||
11 | /* Alfons Geser <a.geser@cox.net> | ||
12 | * updates from Job D. R. Borges <jobdrb@ig.com.br> */ | ||
13 | |||
14 | #ifdef IR_KEYMAPS | ||
15 | static struct ir_scancode eztv[] = { | ||
16 | { 0x12, KEY_POWER }, | ||
17 | { 0x01, KEY_TV }, /* DVR */ | ||
18 | { 0x15, KEY_DVD }, /* DVD */ | ||
19 | { 0x17, KEY_AUDIO }, /* music */ | ||
20 | /* DVR mode / DVD mode / music mode */ | ||
21 | |||
22 | { 0x1b, KEY_MUTE }, /* mute */ | ||
23 | { 0x02, KEY_LANGUAGE }, /* MTS/SAP / audio / autoseek */ | ||
24 | { 0x1e, KEY_SUBTITLE }, /* closed captioning / subtitle / seek */ | ||
25 | { 0x16, KEY_ZOOM }, /* full screen */ | ||
26 | { 0x1c, KEY_VIDEO }, /* video source / eject / delall */ | ||
27 | { 0x1d, KEY_RESTART }, /* playback / angle / del */ | ||
28 | { 0x2f, KEY_SEARCH }, /* scan / menu / playlist */ | ||
29 | { 0x30, KEY_CHANNEL }, /* CH surfing / bookmark / memo */ | ||
30 | |||
31 | { 0x31, KEY_HELP }, /* help */ | ||
32 | { 0x32, KEY_MODE }, /* num/memo */ | ||
33 | { 0x33, KEY_ESC }, /* cancel */ | ||
34 | |||
35 | { 0x0c, KEY_UP }, /* up */ | ||
36 | { 0x10, KEY_DOWN }, /* down */ | ||
37 | { 0x08, KEY_LEFT }, /* left */ | ||
38 | { 0x04, KEY_RIGHT }, /* right */ | ||
39 | { 0x03, KEY_SELECT }, /* select */ | ||
40 | |||
41 | { 0x1f, KEY_REWIND }, /* rewind */ | ||
42 | { 0x20, KEY_PLAYPAUSE },/* play/pause */ | ||
43 | { 0x29, KEY_FORWARD }, /* forward */ | ||
44 | { 0x14, KEY_AGAIN }, /* repeat */ | ||
45 | { 0x2b, KEY_RECORD }, /* recording */ | ||
46 | { 0x2c, KEY_STOP }, /* stop */ | ||
47 | { 0x2d, KEY_PLAY }, /* play */ | ||
48 | { 0x2e, KEY_CAMERA }, /* snapshot / shuffle */ | ||
49 | |||
50 | { 0x00, KEY_0 }, | ||
51 | { 0x05, KEY_1 }, | ||
52 | { 0x06, KEY_2 }, | ||
53 | { 0x07, KEY_3 }, | ||
54 | { 0x09, KEY_4 }, | ||
55 | { 0x0a, KEY_5 }, | ||
56 | { 0x0b, KEY_6 }, | ||
57 | { 0x0d, KEY_7 }, | ||
58 | { 0x0e, KEY_8 }, | ||
59 | { 0x0f, KEY_9 }, | ||
60 | |||
61 | { 0x2a, KEY_VOLUMEUP }, | ||
62 | { 0x11, KEY_VOLUMEDOWN }, | ||
63 | { 0x18, KEY_CHANNELUP },/* CH.tracking up */ | ||
64 | { 0x19, KEY_CHANNELDOWN },/* CH.tracking down */ | ||
65 | |||
66 | { 0x13, KEY_ENTER }, /* enter */ | ||
67 | { 0x21, KEY_DOT }, /* . (decimal dot) */ | ||
68 | }; | ||
69 | DEFINE_LEGACY_IR_KEYTABLE(eztv); | ||
70 | #else | ||
71 | DECLARE_IR_KEYTABLE(eztv); | ||
72 | #endif | ||