Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
drivers
media
rc
keymaps
rc-dib0700-rc5.c
Go to the documentation of this file.
1
/* rc-dvb0700-big.c - Keytable for devices in dvb0700
2
*
3
* Copyright (c) 2010 by Mauro Carvalho Chehab <
[email protected]
>
4
*
5
* TODO: This table is a real mess, as it merges RC codes from several
6
* devices into a big table. It also has both RC-5 and NEC codes inside.
7
* It should be broken into small tables, and the protocols should properly
8
* be indentificated.
9
*
10
* The table were imported from dib0700_devices.c.
11
*
12
* This program is free software; you can redistribute it and/or modify
13
* it under the terms of the GNU General Public License as published by
14
* the Free Software Foundation; either version 2 of the License, or
15
* (at your option) any later version.
16
*/
17
18
#include <
media/rc-map.h
>
19
#include <linux/module.h>
20
21
static
struct
rc_map_table
dib0700_rc5_table[] = {
22
/* Key codes for the tiny Pinnacle remote*/
23
{ 0x0700,
KEY_MUTE
},
24
{ 0x0701,
KEY_MENU
},
/* Pinnacle logo */
25
{ 0x0739,
KEY_POWER
},
26
{ 0x0703,
KEY_VOLUMEUP
},
27
{ 0x0709,
KEY_VOLUMEDOWN
},
28
{ 0x0706,
KEY_CHANNELUP
},
29
{ 0x070c,
KEY_CHANNELDOWN
},
30
{ 0x070f,
KEY_1
},
31
{ 0x0715,
KEY_2
},
32
{ 0x0710,
KEY_3
},
33
{ 0x0718,
KEY_4
},
34
{ 0x071b,
KEY_5
},
35
{ 0x071e,
KEY_6
},
36
{ 0x0711,
KEY_7
},
37
{ 0x0721,
KEY_8
},
38
{ 0x0712,
KEY_9
},
39
{ 0x0727,
KEY_0
},
40
{ 0x0724,
KEY_SCREEN
},
/* 'Square' key */
41
{ 0x072a,
KEY_TEXT
},
/* 'T' key */
42
{ 0x072d,
KEY_REWIND
},
43
{ 0x0730,
KEY_PLAY
},
44
{ 0x0733,
KEY_FASTFORWARD
},
45
{ 0x0736,
KEY_RECORD
},
46
{ 0x073c,
KEY_STOP
},
47
{ 0x073f,
KEY_CANCEL
},
/* '?' key */
48
49
/* Key codes for the Terratec Cinergy DT XS Diversity, similar to cinergyT2.c */
50
{ 0xeb01,
KEY_POWER
},
51
{ 0xeb02,
KEY_1
},
52
{ 0xeb03,
KEY_2
},
53
{ 0xeb04,
KEY_3
},
54
{ 0xeb05,
KEY_4
},
55
{ 0xeb06,
KEY_5
},
56
{ 0xeb07,
KEY_6
},
57
{ 0xeb08,
KEY_7
},
58
{ 0xeb09,
KEY_8
},
59
{ 0xeb0a,
KEY_9
},
60
{ 0xeb0b,
KEY_VIDEO
},
61
{ 0xeb0c,
KEY_0
},
62
{ 0xeb0d,
KEY_REFRESH
},
63
{ 0xeb0f,
KEY_EPG
},
64
{ 0xeb10,
KEY_UP
},
65
{ 0xeb11,
KEY_LEFT
},
66
{ 0xeb12,
KEY_OK
},
67
{ 0xeb13,
KEY_RIGHT
},
68
{ 0xeb14,
KEY_DOWN
},
69
{ 0xeb16,
KEY_INFO
},
70
{ 0xeb17,
KEY_RED
},
71
{ 0xeb18,
KEY_GREEN
},
72
{ 0xeb19,
KEY_YELLOW
},
73
{ 0xeb1a,
KEY_BLUE
},
74
{ 0xeb1b,
KEY_CHANNELUP
},
75
{ 0xeb1c,
KEY_VOLUMEUP
},
76
{ 0xeb1d,
KEY_MUTE
},
77
{ 0xeb1e,
KEY_VOLUMEDOWN
},
78
{ 0xeb1f,
KEY_CHANNELDOWN
},
79
{ 0xeb40,
KEY_PAUSE
},
80
{ 0xeb41,
KEY_HOME
},
81
{ 0xeb42,
KEY_MENU
},
/* DVD Menu */
82
{ 0xeb43,
KEY_SUBTITLE
},
83
{ 0xeb44,
KEY_TEXT
},
/* Teletext */
84
{ 0xeb45,
KEY_DELETE
},
85
{ 0xeb46,
KEY_TV
},
86
{ 0xeb47,
KEY_DVD
},
87
{ 0xeb48,
KEY_STOP
},
88
{ 0xeb49,
KEY_VIDEO
},
89
{ 0xeb4a,
KEY_AUDIO
},
/* Music */
90
{ 0xeb4b,
KEY_SCREEN
},
/* Pic */
91
{ 0xeb4c,
KEY_PLAY
},
92
{ 0xeb4d,
KEY_BACK
},
93
{ 0xeb4e,
KEY_REWIND
},
94
{ 0xeb4f,
KEY_FASTFORWARD
},
95
{ 0xeb54,
KEY_PREVIOUS
},
96
{ 0xeb58,
KEY_RECORD
},
97
{ 0xeb5c,
KEY_NEXT
},
98
99
/* Key codes for the Haupauge WinTV Nova-TD, copied from nova-t-usb2.c (Nova-T USB2) */
100
{ 0x1e00,
KEY_0
},
101
{ 0x1e01,
KEY_1
},
102
{ 0x1e02,
KEY_2
},
103
{ 0x1e03,
KEY_3
},
104
{ 0x1e04,
KEY_4
},
105
{ 0x1e05,
KEY_5
},
106
{ 0x1e06,
KEY_6
},
107
{ 0x1e07,
KEY_7
},
108
{ 0x1e08,
KEY_8
},
109
{ 0x1e09,
KEY_9
},
110
{ 0x1e0a,
KEY_KPASTERISK
},
111
{ 0x1e0b,
KEY_RED
},
112
{ 0x1e0c,
KEY_RADIO
},
113
{ 0x1e0d,
KEY_MENU
},
114
{ 0x1e0e,
KEY_GRAVE
},
/* # */
115
{ 0x1e0f,
KEY_MUTE
},
116
{ 0x1e10,
KEY_VOLUMEUP
},
117
{ 0x1e11,
KEY_VOLUMEDOWN
},
118
{ 0x1e12,
KEY_CHANNEL
},
119
{ 0x1e14,
KEY_UP
},
120
{ 0x1e15,
KEY_DOWN
},
121
{ 0x1e16,
KEY_LEFT
},
122
{ 0x1e17,
KEY_RIGHT
},
123
{ 0x1e18,
KEY_VIDEO
},
124
{ 0x1e19,
KEY_AUDIO
},
125
{ 0x1e1a,
KEY_MEDIA
},
126
{ 0x1e1b,
KEY_EPG
},
127
{ 0x1e1c,
KEY_TV
},
128
{ 0x1e1e,
KEY_NEXT
},
129
{ 0x1e1f,
KEY_BACK
},
130
{ 0x1e20,
KEY_CHANNELUP
},
131
{ 0x1e21,
KEY_CHANNELDOWN
},
132
{ 0x1e24,
KEY_LAST
},
/* Skip backwards */
133
{ 0x1e25,
KEY_OK
},
134
{ 0x1e29,
KEY_BLUE
},
135
{ 0x1e2e,
KEY_GREEN
},
136
{ 0x1e30,
KEY_PAUSE
},
137
{ 0x1e32,
KEY_REWIND
},
138
{ 0x1e34,
KEY_FASTFORWARD
},
139
{ 0x1e35,
KEY_PLAY
},
140
{ 0x1e36,
KEY_STOP
},
141
{ 0x1e37,
KEY_RECORD
},
142
{ 0x1e38,
KEY_YELLOW
},
143
{ 0x1e3b,
KEY_GOTO
},
144
{ 0x1e3d,
KEY_POWER
},
145
146
/* Key codes for the Leadtek Winfast DTV Dongle */
147
{ 0x0042,
KEY_POWER
},
148
{ 0x077c,
KEY_TUNER
},
149
{ 0x0f4e,
KEY_PRINT
},
/* PREVIEW */
150
{ 0x0840,
KEY_SCREEN
},
/* full screen toggle*/
151
{ 0x0f71,
KEY_DOT
},
/* frequency */
152
{ 0x0743,
KEY_0
},
153
{ 0x0c41,
KEY_1
},
154
{ 0x0443,
KEY_2
},
155
{ 0x0b7f,
KEY_3
},
156
{ 0x0e41,
KEY_4
},
157
{ 0x0643,
KEY_5
},
158
{ 0x097f,
KEY_6
},
159
{ 0x0d7e,
KEY_7
},
160
{ 0x057c,
KEY_8
},
161
{ 0x0a40,
KEY_9
},
162
{ 0x0e4e,
KEY_CLEAR
},
163
{ 0x047c,
KEY_CHANNEL
},
/* show channel number */
164
{ 0x0f41,
KEY_LAST
},
/* recall */
165
{ 0x0342,
KEY_MUTE
},
166
{ 0x064c,
KEY_RESERVED
},
/* PIP button*/
167
{ 0x0172,
KEY_SHUFFLE
},
/* SNAPSHOT */
168
{ 0x0c4e,
KEY_PLAYPAUSE
},
/* TIMESHIFT */
169
{ 0x0b70,
KEY_RECORD
},
170
{ 0x037d,
KEY_VOLUMEUP
},
171
{ 0x017d,
KEY_VOLUMEDOWN
},
172
{ 0x0242,
KEY_CHANNELUP
},
173
{ 0x007d,
KEY_CHANNELDOWN
},
174
175
/* Key codes for Nova-TD "credit card" remote control. */
176
{ 0x1d00,
KEY_0
},
177
{ 0x1d01,
KEY_1
},
178
{ 0x1d02,
KEY_2
},
179
{ 0x1d03,
KEY_3
},
180
{ 0x1d04,
KEY_4
},
181
{ 0x1d05,
KEY_5
},
182
{ 0x1d06,
KEY_6
},
183
{ 0x1d07,
KEY_7
},
184
{ 0x1d08,
KEY_8
},
185
{ 0x1d09,
KEY_9
},
186
{ 0x1d0a,
KEY_TEXT
},
187
{ 0x1d0d,
KEY_MENU
},
188
{ 0x1d0f,
KEY_MUTE
},
189
{ 0x1d10,
KEY_VOLUMEUP
},
190
{ 0x1d11,
KEY_VOLUMEDOWN
},
191
{ 0x1d12,
KEY_CHANNEL
},
192
{ 0x1d14,
KEY_UP
},
193
{ 0x1d15,
KEY_DOWN
},
194
{ 0x1d16,
KEY_LEFT
},
195
{ 0x1d17,
KEY_RIGHT
},
196
{ 0x1d1c,
KEY_TV
},
197
{ 0x1d1e,
KEY_NEXT
},
198
{ 0x1d1f,
KEY_BACK
},
199
{ 0x1d20,
KEY_CHANNELUP
},
200
{ 0x1d21,
KEY_CHANNELDOWN
},
201
{ 0x1d24,
KEY_LAST
},
202
{ 0x1d25,
KEY_OK
},
203
{ 0x1d30,
KEY_PAUSE
},
204
{ 0x1d32,
KEY_REWIND
},
205
{ 0x1d34,
KEY_FASTFORWARD
},
206
{ 0x1d35,
KEY_PLAY
},
207
{ 0x1d36,
KEY_STOP
},
208
{ 0x1d37,
KEY_RECORD
},
209
{ 0x1d3b,
KEY_GOTO
},
210
{ 0x1d3d,
KEY_POWER
},
211
};
212
213
static
struct
rc_map_list
dib0700_rc5_map = {
214
.map = {
215
.scan = dib0700_rc5_table,
216
.size =
ARRAY_SIZE
(dib0700_rc5_table),
217
.rc_type =
RC_TYPE_RC5
,
218
.name =
RC_MAP_DIB0700_RC5_TABLE
,
219
}
220
};
221
222
static
int
__init
init_rc_map(
void
)
223
{
224
return
rc_map_register
(&dib0700_rc5_map);
225
}
226
227
static
void
__exit
exit_rc_map(
void
)
228
{
229
rc_map_unregister
(&dib0700_rc5_map);
230
}
231
232
module_init
(init_rc_map)
233
module_exit
(exit_rc_map)
234
235
MODULE_LICENSE
("GPL");
236
MODULE_AUTHOR
("Mauro Carvalho Chehab <
[email protected]
>");
Generated on Thu Jan 10 2013 13:50:25 for Linux Kernel by
1.8.2