1 // SPDX-License-Identifier: GPL-2.0+ 2 // msi-tvanywhere.h - Keytable for msi_tvanywhere Remote Controller 3 // 4 // keymap imported from ir-keymaps.c 5 // 6 // Copyright (c) 2010 by Mauro Carvalho Chehab 7 8 #include <media/rc-map.h> 9 #include <linux/module.h> 10 11 /* MSI TV@nywhere MASTER remote */ 12 13 static struct rc_map_table msi_tvanywhere[] = { 14 /* Keys 0 to 9 */ 15 { 0x00, KEY_NUMERIC_0 }, 16 { 0x01, KEY_NUMERIC_1 }, 17 { 0x02, KEY_NUMERIC_2 }, 18 { 0x03, KEY_NUMERIC_3 }, 19 { 0x04, KEY_NUMERIC_4 }, 20 { 0x05, KEY_NUMERIC_5 }, 21 { 0x06, KEY_NUMERIC_6 }, 22 { 0x07, KEY_NUMERIC_7 }, 23 { 0x08, KEY_NUMERIC_8 }, 24 { 0x09, KEY_NUMERIC_9 }, 25 26 { 0x0c, KEY_MUTE }, 27 { 0x0f, KEY_SCREEN }, /* Full Screen */ 28 { 0x10, KEY_FN }, /* Function */ 29 { 0x11, KEY_TIME }, /* Time shift */ 30 { 0x12, KEY_POWER }, 31 { 0x13, KEY_MEDIA }, /* MTS */ 32 { 0x14, KEY_SLOW }, 33 { 0x16, KEY_REWIND }, /* backward << */ 34 { 0x17, KEY_ENTER }, /* Return */ 35 { 0x18, KEY_FASTFORWARD }, /* forward >> */ 36 { 0x1a, KEY_CHANNELUP }, 37 { 0x1b, KEY_VOLUMEUP }, 38 { 0x1e, KEY_CHANNELDOWN }, 39 { 0x1f, KEY_VOLUMEDOWN }, 40 }; 41 42 static struct rc_map_list msi_tvanywhere_map = { 43 .map = { 44 .scan = msi_tvanywhere, 45 .size = ARRAY_SIZE(msi_tvanywhere), 46 .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */ 47 .name = RC_MAP_MSI_TVANYWHERE, 48 } 49 }; 50 51 static int __init init_rc_map_msi_tvanywhere(void) 52 { 53 return rc_map_register(&msi_tvanywhere_map); 54 } 55 56 static void __exit exit_rc_map_msi_tvanywhere(void) 57 { 58 rc_map_unregister(&msi_tvanywhere_map); 59 } 60 61 module_init(init_rc_map_msi_tvanywhere) 62 module_exit(exit_rc_map_msi_tvanywhere) 63 64 MODULE_LICENSE("GPL"); 65 MODULE_AUTHOR("Mauro Carvalho Chehab"); 66