1 /* genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <media/rc-map.h>
16 * Remote control for the Genius TVGO A11MCE
17 * Adrian Pardini <pardo.bsso@gmail.com>
20 static struct rc_map_table genius_tvgo_a11mce
[] = {
33 { 0x54, KEY_RECORD
}, /* recording */
34 { 0x06, KEY_MUTE
}, /* mute */
36 { 0x40, KEY_LAST
}, /* recall */
37 { 0x4c, KEY_CHANNELUP
}, /* channel / program + */
38 { 0x00, KEY_CHANNELDOWN
}, /* channel / program - */
39 { 0x0d, KEY_VOLUMEUP
},
40 { 0x15, KEY_VOLUMEDOWN
},
41 { 0x4d, KEY_OK
}, /* also labeled as Pause */
42 { 0x1c, KEY_ZOOM
}, /* full screen and Stop*/
43 { 0x02, KEY_MODE
}, /* AV Source or Rewind*/
44 { 0x04, KEY_LIST
}, /* -/-- */
45 /* small arrows above numbers */
46 { 0x1a, KEY_NEXT
}, /* also Fast Forward */
47 { 0x0e, KEY_PREVIOUS
}, /* also Rewind */
48 /* these are in a rather non standard layout and have
49 an alternate name written */
50 { 0x1e, KEY_UP
}, /* Video Setting */
51 { 0x0a, KEY_DOWN
}, /* Video Default */
52 { 0x05, KEY_CAMERA
}, /* Snapshot */
53 { 0x0c, KEY_RIGHT
}, /* Hide Panel */
54 /* Four buttons without label */
61 static struct rc_map_list genius_tvgo_a11mce_map
= {
63 .scan
= genius_tvgo_a11mce
,
64 .size
= ARRAY_SIZE(genius_tvgo_a11mce
),
65 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
66 .name
= RC_MAP_GENIUS_TVGO_A11MCE
,
70 static int __init
init_rc_map_genius_tvgo_a11mce(void)
72 return rc_map_register(&genius_tvgo_a11mce_map
);
75 static void __exit
exit_rc_map_genius_tvgo_a11mce(void)
77 rc_map_unregister(&genius_tvgo_a11mce_map
);
80 module_init(init_rc_map_genius_tvgo_a11mce
)
81 module_exit(exit_rc_map_genius_tvgo_a11mce
)
83 MODULE_LICENSE("GPL");
84 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");