blob: 3d8a19cdb5a24e4584f04933fdbefd6e15e47534 [file] [log] [blame]
Antti Palosaari68617b32010-10-07 21:56:48 -03001/*
2 * TerraTec remote controller keytable
3 *
4 * Copyright (C) 2010 Antti Palosaari <crope@iki.fi>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21#include <media/rc-map.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040022#include <linux/module.h>
Antti Palosaari68617b32010-10-07 21:56:48 -030023
24/* TerraTec slim remote, 7 rows, 4 columns. */
25/* Uses NEC extended 0x02bd. */
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -030026static struct rc_map_table terratec_slim[] = {
Antti Palosaari68617b32010-10-07 21:56:48 -030027 { 0x02bd00, KEY_1 },
28 { 0x02bd01, KEY_2 },
29 { 0x02bd02, KEY_3 },
30 { 0x02bd03, KEY_4 },
31 { 0x02bd04, KEY_5 },
32 { 0x02bd05, KEY_6 },
33 { 0x02bd06, KEY_7 },
34 { 0x02bd07, KEY_8 },
35 { 0x02bd08, KEY_9 },
36 { 0x02bd09, KEY_0 },
37 { 0x02bd0a, KEY_MUTE },
Antti Palosaaridfd6f7f2010-10-12 17:13:08 -030038 { 0x02bd0b, KEY_NEW }, /* symbol: PIP */
Antti Palosaari68617b32010-10-07 21:56:48 -030039 { 0x02bd0e, KEY_VOLUMEDOWN },
40 { 0x02bd0f, KEY_PLAYPAUSE },
41 { 0x02bd10, KEY_RIGHT },
42 { 0x02bd11, KEY_LEFT },
43 { 0x02bd12, KEY_UP },
44 { 0x02bd13, KEY_DOWN },
45 { 0x02bd15, KEY_OK },
46 { 0x02bd16, KEY_STOP },
47 { 0x02bd17, KEY_CAMERA }, /* snapshot */
48 { 0x02bd18, KEY_CHANNELUP },
49 { 0x02bd19, KEY_RECORD },
50 { 0x02bd1a, KEY_CHANNELDOWN },
51 { 0x02bd1c, KEY_ESC },
52 { 0x02bd1f, KEY_VOLUMEUP },
53 { 0x02bd44, KEY_EPG },
54 { 0x02bd45, KEY_POWER2 }, /* [red power button] */
55};
56
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030057static struct rc_map_list terratec_slim_map = {
Antti Palosaari68617b32010-10-07 21:56:48 -030058 .map = {
59 .scan = terratec_slim,
60 .size = ARRAY_SIZE(terratec_slim),
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -030061 .rc_type = RC_TYPE_NEC,
Antti Palosaari68617b32010-10-07 21:56:48 -030062 .name = RC_MAP_TERRATEC_SLIM,
63 }
64};
65
66static int __init init_rc_map_terratec_slim(void)
67{
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030068 return rc_map_register(&terratec_slim_map);
Antti Palosaari68617b32010-10-07 21:56:48 -030069}
70
71static void __exit exit_rc_map_terratec_slim(void)
72{
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030073 rc_map_unregister(&terratec_slim_map);
Antti Palosaari68617b32010-10-07 21:56:48 -030074}
75
76module_init(init_rc_map_terratec_slim)
77module_exit(exit_rc_map_terratec_slim)
78
79MODULE_LICENSE("GPL");
80MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");