xref: /linux/drivers/media/rc/keymaps/rc-mygica-utv3.c (revision e31604d5922ef76a58bd3f9ae719486887eb266e)
1*e31604d5SNils Rothaug // SPDX-License-Identifier: GPL-2.0-or-later
2*e31604d5SNils Rothaug /* rc-mygica-utv3.c - Keytable for the MyGica UTV3 Analog USB2.0 TV Box
3*e31604d5SNils Rothaug  *
4*e31604d5SNils Rothaug  * Copyright (c) 2024 by Nils Rothaug
5*e31604d5SNils Rothaug  */
6*e31604d5SNils Rothaug 
7*e31604d5SNils Rothaug #include <media/rc-map.h>
8*e31604d5SNils Rothaug #include <linux/module.h>
9*e31604d5SNils Rothaug 
10*e31604d5SNils Rothaug static struct rc_map_table mygica_utv3[] = {
11*e31604d5SNils Rothaug 	{ 0x0d, KEY_MUTE },
12*e31604d5SNils Rothaug 	{ 0x38, KEY_VIDEO },  /* Source */
13*e31604d5SNils Rothaug 	{ 0x14, KEY_RADIO },  /* FM Radio */
14*e31604d5SNils Rothaug 	{ 0x0c, KEY_POWER2 },
15*e31604d5SNils Rothaug 
16*e31604d5SNils Rothaug 	{ 0x01, KEY_NUMERIC_1},
17*e31604d5SNils Rothaug 	{ 0x02, KEY_NUMERIC_2},
18*e31604d5SNils Rothaug 	{ 0x03, KEY_NUMERIC_3},
19*e31604d5SNils Rothaug 	{ 0x04, KEY_NUMERIC_4},
20*e31604d5SNils Rothaug 	{ 0x05, KEY_NUMERIC_5},
21*e31604d5SNils Rothaug 	{ 0x06, KEY_NUMERIC_6},
22*e31604d5SNils Rothaug 	{ 0x07, KEY_NUMERIC_7},
23*e31604d5SNils Rothaug 	{ 0x08, KEY_NUMERIC_8},
24*e31604d5SNils Rothaug 	{ 0x09, KEY_NUMERIC_9},
25*e31604d5SNils Rothaug 	{ 0x00, KEY_NUMERIC_0},
26*e31604d5SNils Rothaug 
27*e31604d5SNils Rothaug 	{ 0x0a, KEY_DIGITS }, /* Single/double/triple digit */
28*e31604d5SNils Rothaug 	{ 0x0e, KEY_CAMERA }, /* Snapshot */
29*e31604d5SNils Rothaug 	{ 0x0f, KEY_ZOOM },   /* Full Screen */
30*e31604d5SNils Rothaug 	{ 0x29, KEY_LAST },   /* Recall (return to previous channel) */
31*e31604d5SNils Rothaug 
32*e31604d5SNils Rothaug 	{ 0x17, KEY_PLAY },
33*e31604d5SNils Rothaug 	{ 0x1f, KEY_RECORD },
34*e31604d5SNils Rothaug 	{ 0x0b, KEY_STOP },
35*e31604d5SNils Rothaug 	{ 0x16, KEY_PAUSE },
36*e31604d5SNils Rothaug 
37*e31604d5SNils Rothaug 	{ 0x20, KEY_CHANNELUP },
38*e31604d5SNils Rothaug 	{ 0x21, KEY_CHANNELDOWN },
39*e31604d5SNils Rothaug 	{ 0x10, KEY_VOLUMEUP },
40*e31604d5SNils Rothaug 	{ 0x11, KEY_VOLUMEDOWN },
41*e31604d5SNils Rothaug 	{ 0x26, KEY_REWIND },
42*e31604d5SNils Rothaug 	{ 0x27, KEY_FASTFORWARD },
43*e31604d5SNils Rothaug };
44*e31604d5SNils Rothaug 
45*e31604d5SNils Rothaug static struct rc_map_list mygica_utv3_map = {
46*e31604d5SNils Rothaug 	.map = {
47*e31604d5SNils Rothaug 		.scan     = mygica_utv3,
48*e31604d5SNils Rothaug 		.size     = ARRAY_SIZE(mygica_utv3),
49*e31604d5SNils Rothaug 		.rc_proto = RC_PROTO_RC5,
50*e31604d5SNils Rothaug 		.name     = RC_MAP_MYGICA_UTV3,
51*e31604d5SNils Rothaug 	}
52*e31604d5SNils Rothaug };
53*e31604d5SNils Rothaug 
54*e31604d5SNils Rothaug static int __init init_rc_map_mygica_utv3(void)
55*e31604d5SNils Rothaug {
56*e31604d5SNils Rothaug 	return rc_map_register(&mygica_utv3_map);
57*e31604d5SNils Rothaug }
58*e31604d5SNils Rothaug 
59*e31604d5SNils Rothaug static void __exit exit_rc_map_mygica_utv3(void)
60*e31604d5SNils Rothaug {
61*e31604d5SNils Rothaug 	rc_map_unregister(&mygica_utv3_map);
62*e31604d5SNils Rothaug }
63*e31604d5SNils Rothaug 
64*e31604d5SNils Rothaug module_init(init_rc_map_mygica_utv3)
65*e31604d5SNils Rothaug module_exit(exit_rc_map_mygica_utv3)
66*e31604d5SNils Rothaug 
67*e31604d5SNils Rothaug MODULE_LICENSE("GPL");
68*e31604d5SNils Rothaug MODULE_AUTHOR("Nils Rothaug");
69*e31604d5SNils Rothaug MODULE_DESCRIPTION("MyGica UTV3 Analog USB2.0 TV Box remote keytable");
70