xref: /linux/drivers/media/rc/keymaps/rc-digittrade.c (revision 44f57d78)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Digittrade DVB-T USB Stick remote controller keytable
4  *
5  * Copyright (C) 2010 Antti Palosaari <crope@iki.fi>
6  */
7 
8 #include <media/rc-map.h>
9 #include <linux/module.h>
10 
11 /* Digittrade DVB-T USB Stick remote controller. */
12 /* Imported from af9015.h.
13    Initial keytable was from Alain Kalker <miki@dds.nl> */
14 
15 /* Digittrade DVB-T USB Stick */
16 static struct rc_map_table digittrade[] = {
17 	{ 0x0000, KEY_9 },
18 	{ 0x0001, KEY_EPG },             /* EPG */
19 	{ 0x0002, KEY_VOLUMEDOWN },      /* Vol Dn */
20 	{ 0x0003, KEY_TEXT },            /* TELETEXT */
21 	{ 0x0004, KEY_8 },
22 	{ 0x0005, KEY_MUTE },            /* MUTE */
23 	{ 0x0006, KEY_POWER2 },          /* POWER */
24 	{ 0x0009, KEY_ZOOM },            /* FULLSCREEN */
25 	{ 0x000a, KEY_RECORD },          /* RECORD */
26 	{ 0x000d, KEY_SUBTITLE },        /* SUBTITLE */
27 	{ 0x000e, KEY_STOP },            /* STOP */
28 	{ 0x0010, KEY_OK },              /* RETURN */
29 	{ 0x0011, KEY_2 },
30 	{ 0x0012, KEY_4 },
31 	{ 0x0015, KEY_3 },
32 	{ 0x0016, KEY_5 },
33 	{ 0x0017, KEY_CHANNELDOWN },     /* Ch Dn */
34 	{ 0x0019, KEY_CHANNELUP },       /* CH Up */
35 	{ 0x001a, KEY_PAUSE },           /* PAUSE */
36 	{ 0x001b, KEY_1 },
37 	{ 0x001d, KEY_AUDIO },           /* DUAL SOUND */
38 	{ 0x001e, KEY_PLAY },            /* PLAY */
39 	{ 0x001f, KEY_CAMERA },          /* SNAPSHOT */
40 	{ 0x0040, KEY_VOLUMEUP },        /* Vol Up */
41 	{ 0x0048, KEY_7 },
42 	{ 0x004c, KEY_6 },
43 	{ 0x004d, KEY_PLAYPAUSE },       /* TIMESHIFT */
44 	{ 0x0054, KEY_0 },
45 };
46 
47 static struct rc_map_list digittrade_map = {
48 	.map = {
49 		.scan     = digittrade,
50 		.size     = ARRAY_SIZE(digittrade),
51 		.rc_proto = RC_PROTO_NEC,
52 		.name     = RC_MAP_DIGITTRADE,
53 	}
54 };
55 
56 static int __init init_rc_map_digittrade(void)
57 {
58 	return rc_map_register(&digittrade_map);
59 }
60 
61 static void __exit exit_rc_map_digittrade(void)
62 {
63 	rc_map_unregister(&digittrade_map);
64 }
65 
66 module_init(init_rc_map_digittrade)
67 module_exit(exit_rc_map_digittrade)
68 
69 MODULE_LICENSE("GPL");
70 MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
71