1 /* nec-terratec-cinergy-xs.h - Keytable for nec_terratec_cinergy_xs Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
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.
13 #include <media/rc-map.h>
14 #include <linux/module.h>
16 /* Terratec Cinergy Hybrid T USB XS FM
17 Mauro Carvalho Chehab <mchehab@redhat.com>
20 static struct rc_map_table nec_terratec_cinergy_xs
[] = {
22 /* Terratec Grey IR, with most keys in orange */
24 { 0x1401, KEY_POWER2
},
26 { 0x1442, KEY_MENU
}, /* DVD menu */
27 { 0x1443, KEY_SUBTITLE
},
28 { 0x1444, KEY_TEXT
}, /* Teletext */
29 { 0x1445, KEY_DELETE
},
42 { 0x140b, KEY_TUNER
}, /* AV */
43 { 0x140d, KEY_MODE
}, /* A.B */
48 { 0x144a, KEY_RADIO
}, /* Music */
49 { 0x144b, KEY_CAMERA
}, /* PIC */
59 { 0x144d, KEY_BACKSPACE
},
61 { 0x141c, KEY_VOLUMEUP
},
62 { 0x141e, KEY_VOLUMEDOWN
},
67 { 0x141b, KEY_CHANNELUP
},
68 { 0x141f, KEY_CHANNELDOWN
},
72 { 0x1419, KEY_YELLOW
},
75 { 0x1458, KEY_RECORD
},
80 { 0x144e, KEY_REWIND
},
81 { 0x144f, KEY_FASTFORWARD
},
84 /* Terratec Black IR, with most keys in black */
85 { 0x04eb01, KEY_POWER2
},
98 { 0x04eb0b, KEY_TEXT
}, /* TXT */
99 { 0x04eb0d, KEY_REFRESH
}, /* Refresh */
101 { 0x04eb0e, KEY_HOME
},
102 { 0x04eb0f, KEY_EPG
},
105 { 0x04eb11, KEY_LEFT
},
107 { 0x04eb13, KEY_RIGHT
},
108 { 0x04eb14, KEY_DOWN
},
110 { 0x04eb15, KEY_BACKSPACE
},
111 { 0x04eb16, KEY_INFO
},
113 { 0x04eb17, KEY_RED
},
114 { 0x04eb18, KEY_GREEN
},
115 { 0x04eb19, KEY_YELLOW
},
116 { 0x04eb1a, KEY_BLUE
},
118 { 0x04eb1c, KEY_VOLUMEUP
},
119 { 0x04eb1e, KEY_VOLUMEDOWN
},
121 { 0x04eb1d, KEY_MUTE
},
123 { 0x04eb1b, KEY_CHANNELUP
},
124 { 0x04eb1f, KEY_CHANNELDOWN
},
126 { 0x04eb40, KEY_RECORD
},
127 { 0x04eb4c, KEY_PLAY
},
128 { 0x04eb58, KEY_PAUSE
},
130 { 0x04eb54, KEY_REWIND
},
131 { 0x04eb48, KEY_STOP
},
132 { 0x04eb5c, KEY_NEXT
},
135 static struct rc_map_list nec_terratec_cinergy_xs_map
= {
137 .scan
= nec_terratec_cinergy_xs
,
138 .size
= ARRAY_SIZE(nec_terratec_cinergy_xs
),
139 .rc_type
= RC_TYPE_NEC
,
140 .name
= RC_MAP_NEC_TERRATEC_CINERGY_XS
,
144 static int __init
init_rc_map_nec_terratec_cinergy_xs(void)
146 return rc_map_register(&nec_terratec_cinergy_xs_map
);
149 static void __exit
exit_rc_map_nec_terratec_cinergy_xs(void)
151 rc_map_unregister(&nec_terratec_cinergy_xs_map
);
154 module_init(init_rc_map_nec_terratec_cinergy_xs
)
155 module_exit(exit_rc_map_nec_terratec_cinergy_xs
)
157 MODULE_LICENSE("GPL");
158 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");