]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
media: rc: add keymap for Siemens Gigaset RC20 remote
authorMichael Klein <michael@fossekall.de>
Thu, 9 Jan 2025 18:55:10 +0000 (19:55 +0100)
committerHans Verkuil <hverkuil@xs4all.nl>
Thu, 13 Feb 2025 11:12:31 +0000 (12:12 +0100)
Add keymap for the Siemens Gigaset RC20 remote (RC-5).

Signed-off-by: Michael Klein <michael@fossekall.de>
Signed-off-by: Sean Young <sean@mess.org>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
drivers/media/rc/keymaps/Makefile
drivers/media/rc/keymaps/rc-siemens-gigaset-rc20.c [new file with mode: 0644]
include/media/rc-map.h

index 7fdf0d9edbfd33660c5d27bd272bd65dc23ab7f1..d04572627cdd0b7962c5035a9202ca265d36eeb1 100644 (file)
@@ -106,6 +106,7 @@ obj-$(CONFIG_RC_MAP) += \
                        rc-rc6-mce.o \
                        rc-real-audio-220-32-keys.o \
                        rc-reddo.o \
+                       rc-siemens-gigaset-rc20.o \
                        rc-snapstream-firefly.o \
                        rc-streamzap.o \
                        rc-su3000.o \
diff --git a/drivers/media/rc/keymaps/rc-siemens-gigaset-rc20.c b/drivers/media/rc/keymaps/rc-siemens-gigaset-rc20.c
new file mode 100644 (file)
index 0000000..defc779
--- /dev/null
@@ -0,0 +1,71 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/* rc-siemens-gigaset-rc20.c - Keytable for the Siemens Gigaset RC 20 remote
+ *
+ * Copyright (c) 2025 by Michael Klein
+ */
+
+#include <media/rc-map.h>
+#include <linux/module.h>
+
+static struct rc_map_table siemens_gigaset_rc20[] = {
+       { 0x1501, KEY_POWER },
+       { 0x1502, KEY_MUTE },
+       { 0x1503, KEY_NUMERIC_1 },
+       { 0x1504, KEY_NUMERIC_2 },
+       { 0x1505, KEY_NUMERIC_3 },
+       { 0x1506, KEY_NUMERIC_4 },
+       { 0x1507, KEY_NUMERIC_5 },
+       { 0x1508, KEY_NUMERIC_6 },
+       { 0x1509, KEY_NUMERIC_7 },
+       { 0x150a, KEY_NUMERIC_8 },
+       { 0x150b, KEY_NUMERIC_9 },
+       { 0x150c, KEY_NUMERIC_0 },
+       { 0x150d, KEY_UP },
+       { 0x150e, KEY_LEFT },
+       { 0x150f, KEY_OK },
+       { 0x1510, KEY_RIGHT },
+       { 0x1511, KEY_DOWN },
+       { 0x1512, KEY_SHUFFLE },        /* double-arrow */
+       { 0x1513, KEY_EXIT },
+       { 0x1514, KEY_RED },
+       { 0x1515, KEY_GREEN },
+       { 0x1516, KEY_YELLOW },         /* OPT */
+       { 0x1517, KEY_BLUE },
+       { 0x1518, KEY_MENU },
+       { 0x1519, KEY_TEXT },
+       { 0x151a, KEY_MODE },           /* TV/Radio */
+
+       { 0x1521, KEY_EPG },
+       { 0x1522, KEY_FAVORITES },
+       { 0x1523, KEY_CHANNELUP },
+       { 0x1524, KEY_CHANNELDOWN },
+       { 0x1525, KEY_VOLUMEUP },
+       { 0x1526, KEY_VOLUMEDOWN },
+       { 0x1527, KEY_INFO },
+};
+
+static struct rc_map_list siemens_gigaset_rc20_map = {
+       .map = {
+               .scan     = siemens_gigaset_rc20,
+               .size     = ARRAY_SIZE(siemens_gigaset_rc20),
+               .rc_proto = RC_PROTO_RC5,
+               .name     = RC_MAP_SIEMENS_GIGASET_RC20,
+       }
+};
+
+static int __init init_rc_map_siemens_gigaset_rc20(void)
+{
+       return rc_map_register(&siemens_gigaset_rc20_map);
+}
+
+static void __exit exit_rc_map_siemens_gigaset_rc20(void)
+{
+       rc_map_unregister(&siemens_gigaset_rc20_map);
+}
+
+module_init(init_rc_map_siemens_gigaset_rc20)
+module_exit(exit_rc_map_siemens_gigaset_rc20)
+
+MODULE_LICENSE("GPL");
+MODULE_AUTHOR("Michael Klein");
+MODULE_DESCRIPTION("Siemens Gigaset RC20 remote keytable");
index 4867eb2f931e0eae0b7ef2cbd66eaaef96240bee..d90e4611b066440cf1ac005ecf3e6eafe880f41a 100644 (file)
@@ -313,6 +313,7 @@ struct rc_map *rc_map_get(const char *name);
 #define RC_MAP_RC6_MCE                   "rc-rc6-mce"
 #define RC_MAP_REAL_AUDIO_220_32_KEYS    "rc-real-audio-220-32-keys"
 #define RC_MAP_REDDO                     "rc-reddo"
+#define RC_MAP_SIEMENS_GIGASET_RC20      "rc-siemens-gigaset-rc20"
 #define RC_MAP_SNAPSTREAM_FIREFLY        "rc-snapstream-firefly"
 #define RC_MAP_STREAMZAP                 "rc-streamzap"
 #define RC_MAP_SU3000                    "rc-su3000"