[media] v1.88 DM04/QQBOX Move remote to use rc_core dvb-usb-remote
[pandora-kernel.git] / drivers / media / rc / keymaps / rc-avermedia-cardbus.c
1 /* avermedia-cardbus.h - Keytable for avermedia_cardbus 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>
14
15 /* Oldrich Jedlicka <oldium.pro@seznam.cz> */
16
17 static struct rc_map_table avermedia_cardbus[] = {
18         { 0x00, KEY_POWER },
19         { 0x01, KEY_TUNER },            /* TV/FM */
20         { 0x03, KEY_TEXT },             /* Teletext */
21         { 0x04, KEY_EPG },
22         { 0x05, KEY_1 },
23         { 0x06, KEY_2 },
24         { 0x07, KEY_3 },
25         { 0x08, KEY_AUDIO },
26         { 0x09, KEY_4 },
27         { 0x0a, KEY_5 },
28         { 0x0b, KEY_6 },
29         { 0x0c, KEY_ZOOM },             /* Full screen */
30         { 0x0d, KEY_7 },
31         { 0x0e, KEY_8 },
32         { 0x0f, KEY_9 },
33         { 0x10, KEY_PAGEUP },           /* 16-CH PREV */
34         { 0x11, KEY_0 },
35         { 0x12, KEY_INFO },
36         { 0x13, KEY_AGAIN },            /* CH RTN - channel return */
37         { 0x14, KEY_MUTE },
38         { 0x15, KEY_EDIT },             /* Autoscan */
39         { 0x17, KEY_SAVE },             /* Screenshot */
40         { 0x18, KEY_PLAYPAUSE },
41         { 0x19, KEY_RECORD },
42         { 0x1a, KEY_PLAY },
43         { 0x1b, KEY_STOP },
44         { 0x1c, KEY_FASTFORWARD },
45         { 0x1d, KEY_REWIND },
46         { 0x1e, KEY_VOLUMEDOWN },
47         { 0x1f, KEY_VOLUMEUP },
48         { 0x22, KEY_SLEEP },            /* Sleep */
49         { 0x23, KEY_ZOOM },             /* Aspect */
50         { 0x26, KEY_SCREEN },           /* Pos */
51         { 0x27, KEY_ANGLE },            /* Size */
52         { 0x28, KEY_SELECT },           /* Select */
53         { 0x29, KEY_BLUE },             /* Blue/Picture */
54         { 0x2a, KEY_BACKSPACE },        /* Back */
55         { 0x2b, KEY_VIDEO },            /* PIP (Picture-in-picture) */
56         { 0x2c, KEY_DOWN },
57         { 0x2e, KEY_DOT },
58         { 0x2f, KEY_TV },               /* Live TV */
59         { 0x32, KEY_LEFT },
60         { 0x33, KEY_CLEAR },            /* Clear */
61         { 0x35, KEY_RED },              /* Red/TV */
62         { 0x36, KEY_UP },
63         { 0x37, KEY_HOME },             /* Home */
64         { 0x39, KEY_GREEN },            /* Green/Video */
65         { 0x3d, KEY_YELLOW },           /* Yellow/Music */
66         { 0x3e, KEY_OK },               /* Ok */
67         { 0x3f, KEY_RIGHT },
68         { 0x40, KEY_NEXT },             /* Next */
69         { 0x41, KEY_PREVIOUS },         /* Previous */
70         { 0x42, KEY_CHANNELDOWN },      /* Channel down */
71         { 0x43, KEY_CHANNELUP },        /* Channel up */
72 };
73
74 static struct rc_map_list avermedia_cardbus_map = {
75         .map = {
76                 .scan    = avermedia_cardbus,
77                 .size    = ARRAY_SIZE(avermedia_cardbus),
78                 .rc_type = RC_TYPE_UNKNOWN,     /* Legacy IR type */
79                 .name    = RC_MAP_AVERMEDIA_CARDBUS,
80         }
81 };
82
83 static int __init init_rc_map_avermedia_cardbus(void)
84 {
85         return rc_map_register(&avermedia_cardbus_map);
86 }
87
88 static void __exit exit_rc_map_avermedia_cardbus(void)
89 {
90         rc_map_unregister(&avermedia_cardbus_map);
91 }
92
93 module_init(init_rc_map_avermedia_cardbus)
94 module_exit(exit_rc_map_avermedia_cardbus)
95
96 MODULE_LICENSE("GPL");
97 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");