1
2
3
4
5
6
7
8
9
10
11
12
13#include <media/rc-map.h>
14#include <linux/module.h>
15
16
17
18
19
20static struct rc_map_table nec_terratec_cinergy_xs[] = {
21 { 0x1441, KEY_HOME},
22 { 0x1401, KEY_POWER2},
23
24 { 0x1442, KEY_MENU},
25 { 0x1443, KEY_SUBTITLE},
26 { 0x1444, KEY_TEXT},
27 { 0x1445, KEY_DELETE},
28
29 { 0x1402, KEY_1},
30 { 0x1403, KEY_2},
31 { 0x1404, KEY_3},
32 { 0x1405, KEY_4},
33 { 0x1406, KEY_5},
34 { 0x1407, KEY_6},
35 { 0x1408, KEY_7},
36 { 0x1409, KEY_8},
37 { 0x140a, KEY_9},
38 { 0x140c, KEY_0},
39
40 { 0x140b, KEY_TUNER},
41 { 0x140d, KEY_MODE},
42
43 { 0x1446, KEY_TV},
44 { 0x1447, KEY_DVD},
45 { 0x1449, KEY_VIDEO},
46 { 0x144a, KEY_RADIO},
47 { 0x144b, KEY_CAMERA},
48
49 { 0x1410, KEY_UP},
50 { 0x1411, KEY_LEFT},
51 { 0x1412, KEY_OK},
52 { 0x1413, KEY_RIGHT},
53 { 0x1414, KEY_DOWN},
54
55 { 0x140f, KEY_EPG},
56 { 0x1416, KEY_INFO},
57 { 0x144d, KEY_BACKSPACE},
58
59 { 0x141c, KEY_VOLUMEUP},
60 { 0x141e, KEY_VOLUMEDOWN},
61
62 { 0x144c, KEY_PLAY},
63 { 0x141d, KEY_MUTE},
64
65 { 0x141b, KEY_CHANNELUP},
66 { 0x141f, KEY_CHANNELDOWN},
67
68 { 0x1417, KEY_RED},
69 { 0x1418, KEY_GREEN},
70 { 0x1419, KEY_YELLOW},
71 { 0x141a, KEY_BLUE},
72
73 { 0x1458, KEY_RECORD},
74 { 0x1448, KEY_STOP},
75 { 0x1440, KEY_PAUSE},
76
77 { 0x1454, KEY_LAST},
78 { 0x144e, KEY_REWIND},
79 { 0x144f, KEY_FASTFORWARD},
80 { 0x145c, KEY_NEXT},
81};
82
83static struct rc_map_list nec_terratec_cinergy_xs_map = {
84 .map = {
85 .scan = nec_terratec_cinergy_xs,
86 .size = ARRAY_SIZE(nec_terratec_cinergy_xs),
87 .rc_type = RC_TYPE_NEC,
88 .name = RC_MAP_NEC_TERRATEC_CINERGY_XS,
89 }
90};
91
92static int __init init_rc_map_nec_terratec_cinergy_xs(void)
93{
94 return rc_map_register(&nec_terratec_cinergy_xs_map);
95}
96
97static void __exit exit_rc_map_nec_terratec_cinergy_xs(void)
98{
99 rc_map_unregister(&nec_terratec_cinergy_xs_map);
100}
101
102module_init(init_rc_map_nec_terratec_cinergy_xs)
103module_exit(exit_rc_map_nec_terratec_cinergy_xs)
104
105MODULE_LICENSE("GPL");
106MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
107