1 /* nec-terratec-cinergy-xs.h - Keytable for nec_terratec_cinergy_xs Remote Controller
2  *
3  * keymap imported from ir-keymaps.c
4  *
5  * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  */
12 
13 #include <media/rc-map.h>
14 
15 /* Terratec Cinergy Hybrid T USB XS FM
16    Mauro Carvalho Chehab <mchehab@redhat.com>
17  */
18 
19 static struct ir_scancode nec_terratec_cinergy_xs[] = {
20 	{ 0x1441, KEY_HOME},
21 	{ 0x1401, KEY_POWER2},
22 
23 	{ 0x1442, KEY_MENU},		/* DVD menu */
24 	{ 0x1443, KEY_SUBTITLE},
25 	{ 0x1444, KEY_TEXT},		/* Teletext */
26 	{ 0x1445, KEY_DELETE},
27 
28 	{ 0x1402, KEY_1},
29 	{ 0x1403, KEY_2},
30 	{ 0x1404, KEY_3},
31 	{ 0x1405, KEY_4},
32 	{ 0x1406, KEY_5},
33 	{ 0x1407, KEY_6},
34 	{ 0x1408, KEY_7},
35 	{ 0x1409, KEY_8},
36 	{ 0x140a, KEY_9},
37 	{ 0x140c, KEY_0},
38 
39 	{ 0x140b, KEY_TUNER},		/* AV */
40 	{ 0x140d, KEY_MODE},		/* A.B */
41 
42 	{ 0x1446, KEY_TV},
43 	{ 0x1447, KEY_DVD},
44 	{ 0x1449, KEY_VIDEO},
45 	{ 0x144a, KEY_RADIO},		/* Music */
46 	{ 0x144b, KEY_CAMERA},		/* PIC */
47 
48 	{ 0x1410, KEY_UP},
49 	{ 0x1411, KEY_LEFT},
50 	{ 0x1412, KEY_OK},
51 	{ 0x1413, KEY_RIGHT},
52 	{ 0x1414, KEY_DOWN},
53 
54 	{ 0x140f, KEY_EPG},
55 	{ 0x1416, KEY_INFO},
56 	{ 0x144d, KEY_BACKSPACE},
57 
58 	{ 0x141c, KEY_VOLUMEUP},
59 	{ 0x141e, KEY_VOLUMEDOWN},
60 
61 	{ 0x144c, KEY_PLAY},
62 	{ 0x141d, KEY_MUTE},
63 
64 	{ 0x141b, KEY_CHANNELUP},
65 	{ 0x141f, KEY_CHANNELDOWN},
66 
67 	{ 0x1417, KEY_RED},
68 	{ 0x1418, KEY_GREEN},
69 	{ 0x1419, KEY_YELLOW},
70 	{ 0x141a, KEY_BLUE},
71 
72 	{ 0x1458, KEY_RECORD},
73 	{ 0x1448, KEY_STOP},
74 	{ 0x1440, KEY_PAUSE},
75 
76 	{ 0x1454, KEY_LAST},
77 	{ 0x144e, KEY_REWIND},
78 	{ 0x144f, KEY_FASTFORWARD},
79 	{ 0x145c, KEY_NEXT},
80 };
81 
82 static struct rc_keymap nec_terratec_cinergy_xs_map = {
83 	.map = {
84 		.scan    = nec_terratec_cinergy_xs,
85 		.size    = ARRAY_SIZE(nec_terratec_cinergy_xs),
86 		.ir_type = IR_TYPE_NEC,
87 		.name    = RC_MAP_NEC_TERRATEC_CINERGY_XS,
88 	}
89 };
90 
91 static int __init init_rc_map_nec_terratec_cinergy_xs(void)
92 {
93 	return ir_register_map(&nec_terratec_cinergy_xs_map);
94 }
95 
96 static void __exit exit_rc_map_nec_terratec_cinergy_xs(void)
97 {
98 	ir_unregister_map(&nec_terratec_cinergy_xs_map);
99 }
100 
101 module_init(init_rc_map_nec_terratec_cinergy_xs)
102 module_exit(exit_rc_map_nec_terratec_cinergy_xs)
103 
104 MODULE_LICENSE("GPL");
105 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
106