1 // SPDX-License-Identifier: GPL-2.0+ 2 // genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce 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 /* 12 * Remote control for the Genius TVGO A11MCE 13 * Adrian Pardini <pardo.bsso@gmail.com> 14 */ 15 16 static struct rc_map_table genius_tvgo_a11mce[] = { 17 /* Keys 0 to 9 */ 18 { 0x48, KEY_NUMERIC_0 }, 19 { 0x09, KEY_NUMERIC_1 }, 20 { 0x1d, KEY_NUMERIC_2 }, 21 { 0x1f, KEY_NUMERIC_3 }, 22 { 0x19, KEY_NUMERIC_4 }, 23 { 0x1b, KEY_NUMERIC_5 }, 24 { 0x11, KEY_NUMERIC_6 }, 25 { 0x17, KEY_NUMERIC_7 }, 26 { 0x12, KEY_NUMERIC_8 }, 27 { 0x16, KEY_NUMERIC_9 }, 28 29 { 0x54, KEY_RECORD }, /* recording */ 30 { 0x06, KEY_MUTE }, /* mute */ 31 { 0x10, KEY_POWER }, 32 { 0x40, KEY_LAST }, /* recall */ 33 { 0x4c, KEY_CHANNELUP }, /* channel / program + */ 34 { 0x00, KEY_CHANNELDOWN }, /* channel / program - */ 35 { 0x0d, KEY_VOLUMEUP }, 36 { 0x15, KEY_VOLUMEDOWN }, 37 { 0x4d, KEY_OK }, /* also labeled as Pause */ 38 { 0x1c, KEY_ZOOM }, /* full screen and Stop*/ 39 { 0x02, KEY_MODE }, /* AV Source or Rewind*/ 40 { 0x04, KEY_LIST }, /* -/-- */ 41 /* small arrows above numbers */ 42 { 0x1a, KEY_NEXT }, /* also Fast Forward */ 43 { 0x0e, KEY_PREVIOUS }, /* also Rewind */ 44 /* these are in a rather non standard layout and have 45 an alternate name written */ 46 { 0x1e, KEY_UP }, /* Video Setting */ 47 { 0x0a, KEY_DOWN }, /* Video Default */ 48 { 0x05, KEY_CAMERA }, /* Snapshot */ 49 { 0x0c, KEY_RIGHT }, /* Hide Panel */ 50 /* Four buttons without label */ 51 { 0x49, KEY_RED }, 52 { 0x0b, KEY_GREEN }, 53 { 0x13, KEY_YELLOW }, 54 { 0x50, KEY_BLUE }, 55 }; 56 57 static struct rc_map_list genius_tvgo_a11mce_map = { 58 .map = { 59 .scan = genius_tvgo_a11mce, 60 .size = ARRAY_SIZE(genius_tvgo_a11mce), 61 .rc_proto = RC_PROTO_UNKNOWN, /* Legacy IR type */ 62 .name = RC_MAP_GENIUS_TVGO_A11MCE, 63 } 64 }; 65 66 static int __init init_rc_map_genius_tvgo_a11mce(void) 67 { 68 return rc_map_register(&genius_tvgo_a11mce_map); 69 } 70 71 static void __exit exit_rc_map_genius_tvgo_a11mce(void) 72 { 73 rc_map_unregister(&genius_tvgo_a11mce_map); 74 } 75 76 module_init(init_rc_map_genius_tvgo_a11mce) 77 module_exit(exit_rc_map_genius_tvgo_a11mce) 78 79 MODULE_LICENSE("GPL"); 80 MODULE_AUTHOR("Mauro Carvalho Chehab"); 81