1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* rc-siemens-gigaset-rc20.c - Keytable for the Siemens Gigaset RC 20 remote 3 * 4 * Copyright (c) 2025 by Michael Klein 5 */ 6 7 #include <media/rc-map.h> 8 #include <linux/module.h> 9 10 static struct rc_map_table siemens_gigaset_rc20[] = { 11 { 0x1501, KEY_POWER }, 12 { 0x1502, KEY_MUTE }, 13 { 0x1503, KEY_NUMERIC_1 }, 14 { 0x1504, KEY_NUMERIC_2 }, 15 { 0x1505, KEY_NUMERIC_3 }, 16 { 0x1506, KEY_NUMERIC_4 }, 17 { 0x1507, KEY_NUMERIC_5 }, 18 { 0x1508, KEY_NUMERIC_6 }, 19 { 0x1509, KEY_NUMERIC_7 }, 20 { 0x150a, KEY_NUMERIC_8 }, 21 { 0x150b, KEY_NUMERIC_9 }, 22 { 0x150c, KEY_NUMERIC_0 }, 23 { 0x150d, KEY_UP }, 24 { 0x150e, KEY_LEFT }, 25 { 0x150f, KEY_OK }, 26 { 0x1510, KEY_RIGHT }, 27 { 0x1511, KEY_DOWN }, 28 { 0x1512, KEY_SHUFFLE }, /* double-arrow */ 29 { 0x1513, KEY_EXIT }, 30 { 0x1514, KEY_RED }, 31 { 0x1515, KEY_GREEN }, 32 { 0x1516, KEY_YELLOW }, /* OPT */ 33 { 0x1517, KEY_BLUE }, 34 { 0x1518, KEY_MENU }, 35 { 0x1519, KEY_TEXT }, 36 { 0x151a, KEY_MODE }, /* TV/Radio */ 37 38 { 0x1521, KEY_EPG }, 39 { 0x1522, KEY_FAVORITES }, 40 { 0x1523, KEY_CHANNELUP }, 41 { 0x1524, KEY_CHANNELDOWN }, 42 { 0x1525, KEY_VOLUMEUP }, 43 { 0x1526, KEY_VOLUMEDOWN }, 44 { 0x1527, KEY_INFO }, 45 }; 46 47 static struct rc_map_list siemens_gigaset_rc20_map = { 48 .map = { 49 .scan = siemens_gigaset_rc20, 50 .size = ARRAY_SIZE(siemens_gigaset_rc20), 51 .rc_proto = RC_PROTO_RC5, 52 .name = RC_MAP_SIEMENS_GIGASET_RC20, 53 } 54 }; 55 56 static int __init init_rc_map_siemens_gigaset_rc20(void) 57 { 58 return rc_map_register(&siemens_gigaset_rc20_map); 59 } 60 61 static void __exit exit_rc_map_siemens_gigaset_rc20(void) 62 { 63 rc_map_unregister(&siemens_gigaset_rc20_map); 64 } 65 66 module_init(init_rc_map_siemens_gigaset_rc20) 67 module_exit(exit_rc_map_siemens_gigaset_rc20) 68 69 MODULE_LICENSE("GPL"); 70 MODULE_AUTHOR("Michael Klein"); 71 MODULE_DESCRIPTION("Siemens Gigaset RC20 remote keytable"); 72