blob: a2e2faa1d1b3708ec7b454d0eebb9e137a890735 [file] [log] [blame]
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -03001/* genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce Remote Controller
2 *
3 * keymap imported from ir-keymaps.c
4 *
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
6 *
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.
11 */
12
13#include <media/rc-map.h>
Paul Gortmaker7a707b82011-07-03 14:03:12 -040014#include <linux/module.h>
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030015
16/*
17 * Remote control for the Genius TVGO A11MCE
18 * Adrian Pardini <pardo.bsso@gmail.com>
19 */
20
Mauro Carvalho Chehab2f4f58d2010-11-17 15:46:09 -030021static struct rc_map_table genius_tvgo_a11mce[] = {
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030022 /* Keys 0 to 9 */
23 { 0x48, KEY_0 },
24 { 0x09, KEY_1 },
25 { 0x1d, KEY_2 },
26 { 0x1f, KEY_3 },
27 { 0x19, KEY_4 },
28 { 0x1b, KEY_5 },
29 { 0x11, KEY_6 },
30 { 0x17, KEY_7 },
31 { 0x12, KEY_8 },
32 { 0x16, KEY_9 },
33
34 { 0x54, KEY_RECORD }, /* recording */
35 { 0x06, KEY_MUTE }, /* mute */
36 { 0x10, KEY_POWER },
37 { 0x40, KEY_LAST }, /* recall */
38 { 0x4c, KEY_CHANNELUP }, /* channel / program + */
39 { 0x00, KEY_CHANNELDOWN }, /* channel / program - */
40 { 0x0d, KEY_VOLUMEUP },
41 { 0x15, KEY_VOLUMEDOWN },
42 { 0x4d, KEY_OK }, /* also labeled as Pause */
43 { 0x1c, KEY_ZOOM }, /* full screen and Stop*/
44 { 0x02, KEY_MODE }, /* AV Source or Rewind*/
45 { 0x04, KEY_LIST }, /* -/-- */
46 /* small arrows above numbers */
47 { 0x1a, KEY_NEXT }, /* also Fast Forward */
48 { 0x0e, KEY_PREVIOUS }, /* also Rewind */
49 /* these are in a rather non standard layout and have
50 an alternate name written */
51 { 0x1e, KEY_UP }, /* Video Setting */
52 { 0x0a, KEY_DOWN }, /* Video Default */
53 { 0x05, KEY_CAMERA }, /* Snapshot */
54 { 0x0c, KEY_RIGHT }, /* Hide Panel */
55 /* Four buttons without label */
56 { 0x49, KEY_RED },
57 { 0x0b, KEY_GREEN },
58 { 0x13, KEY_YELLOW },
59 { 0x50, KEY_BLUE },
60};
61
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030062static struct rc_map_list genius_tvgo_a11mce_map = {
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030063 .map = {
64 .scan = genius_tvgo_a11mce,
65 .size = ARRAY_SIZE(genius_tvgo_a11mce),
Mauro Carvalho Chehab52b66142010-11-17 14:20:52 -030066 .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030067 .name = RC_MAP_GENIUS_TVGO_A11MCE,
68 }
69};
70
71static int __init init_rc_map_genius_tvgo_a11mce(void)
72{
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030073 return rc_map_register(&genius_tvgo_a11mce_map);
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030074}
75
76static void __exit exit_rc_map_genius_tvgo_a11mce(void)
77{
Mauro Carvalho Chehabd100e652010-11-17 15:56:53 -030078 rc_map_unregister(&genius_tvgo_a11mce_map);
Mauro Carvalho Chehab6686fa62010-04-02 03:05:46 -030079}
80
81module_init(init_rc_map_genius_tvgo_a11mce)
82module_exit(exit_rc_map_genius_tvgo_a11mce)
83
84MODULE_LICENSE("GPL");
85MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");