]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - drivers/media/rc/keymaps/rc-rc6-mce.c
HID: usbhid: Add HID_QUIRK_NOGET for Aten CS-1758 KVM switch
[mirror_ubuntu-artful-kernel.git] / drivers / media / rc / keymaps / rc-rc6-mce.c
1 /* rc-rc6-mce.c - Keytable for Windows Media Center RC-6 remotes for use
2 * with the Media Center Edition eHome Infrared Transceiver.
3 *
4 * Copyright (c) 2010 by Jarod Wilson <jarod@redhat.com>
5 *
6 * See http://mediacenterguides.com/book/export/html/31 for details on
7 * key mappings.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 */
14
15 #include <media/rc-map.h>
16 #include <linux/module.h>
17
18 static struct rc_map_table rc6_mce[] = {
19
20 { 0x800f0400, KEY_NUMERIC_0 },
21 { 0x800f0401, KEY_NUMERIC_1 },
22 { 0x800f0402, KEY_NUMERIC_2 },
23 { 0x800f0403, KEY_NUMERIC_3 },
24 { 0x800f0404, KEY_NUMERIC_4 },
25 { 0x800f0405, KEY_NUMERIC_5 },
26 { 0x800f0406, KEY_NUMERIC_6 },
27 { 0x800f0407, KEY_NUMERIC_7 },
28 { 0x800f0408, KEY_NUMERIC_8 },
29 { 0x800f0409, KEY_NUMERIC_9 },
30
31 { 0x800f040a, KEY_DELETE },
32 { 0x800f040b, KEY_ENTER },
33 { 0x800f040c, KEY_SLEEP }, /* Formerly PC Power */
34 { 0x800f040d, KEY_MEDIA }, /* Windows MCE button */
35 { 0x800f040e, KEY_MUTE },
36 { 0x800f040f, KEY_INFO },
37
38 { 0x800f0410, KEY_VOLUMEUP },
39 { 0x800f0411, KEY_VOLUMEDOWN },
40 { 0x800f0412, KEY_CHANNELUP },
41 { 0x800f0413, KEY_CHANNELDOWN },
42
43 { 0x800f0414, KEY_FASTFORWARD },
44 { 0x800f0415, KEY_REWIND },
45 { 0x800f0416, KEY_PLAY },
46 { 0x800f0417, KEY_RECORD },
47 { 0x800f0418, KEY_PAUSE },
48 { 0x800f0419, KEY_STOP },
49 { 0x800f041a, KEY_NEXT },
50 { 0x800f041b, KEY_PREVIOUS },
51 { 0x800f041c, KEY_NUMERIC_POUND },
52 { 0x800f041d, KEY_NUMERIC_STAR },
53
54 { 0x800f041e, KEY_UP },
55 { 0x800f041f, KEY_DOWN },
56 { 0x800f0420, KEY_LEFT },
57 { 0x800f0421, KEY_RIGHT },
58
59 { 0x800f0422, KEY_OK },
60 { 0x800f0423, KEY_EXIT },
61 { 0x800f0424, KEY_DVD },
62 { 0x800f0425, KEY_TUNER }, /* LiveTV */
63 { 0x800f0426, KEY_EPG }, /* Guide */
64 { 0x800f0427, KEY_ZOOM }, /* Aspect */
65
66 { 0x800f0432, KEY_MODE }, /* Visualization */
67 { 0x800f0433, KEY_PRESENTATION }, /* Slide Show */
68 { 0x800f0434, KEY_EJECTCD },
69 { 0x800f043a, KEY_BRIGHTNESSUP },
70
71 { 0x800f0446, KEY_TV },
72 { 0x800f0447, KEY_AUDIO }, /* My Music */
73 { 0x800f0448, KEY_PVR }, /* RecordedTV */
74 { 0x800f0449, KEY_CAMERA },
75 { 0x800f044a, KEY_VIDEO },
76 { 0x800f044c, KEY_LANGUAGE },
77 { 0x800f044d, KEY_TITLE },
78 { 0x800f044e, KEY_PRINT }, /* Print - HP OEM version of remote */
79
80 { 0x800f0450, KEY_RADIO },
81
82 { 0x800f045a, KEY_SUBTITLE }, /* Caption/Teletext */
83 { 0x800f045b, KEY_RED },
84 { 0x800f045c, KEY_GREEN },
85 { 0x800f045d, KEY_YELLOW },
86 { 0x800f045e, KEY_BLUE },
87
88 { 0x800f0465, KEY_POWER2 }, /* TV Power */
89 { 0x800f046e, KEY_PLAYPAUSE },
90 { 0x800f046f, KEY_PLAYER }, /* Start media application (NEW) */
91
92 { 0x800f0480, KEY_BRIGHTNESSDOWN },
93 { 0x800f0481, KEY_PLAYPAUSE },
94 };
95
96 static struct rc_map_list rc6_mce_map = {
97 .map = {
98 .scan = rc6_mce,
99 .size = ARRAY_SIZE(rc6_mce),
100 .rc_type = RC_TYPE_RC6_MCE,
101 .name = RC_MAP_RC6_MCE,
102 }
103 };
104
105 static int __init init_rc_map_rc6_mce(void)
106 {
107 return rc_map_register(&rc6_mce_map);
108 }
109
110 static void __exit exit_rc_map_rc6_mce(void)
111 {
112 rc_map_unregister(&rc6_mce_map);
113 }
114
115 module_init(init_rc_map_rc6_mce)
116 module_exit(exit_rc_map_rc6_mce)
117
118 MODULE_LICENSE("GPL");
119 MODULE_AUTHOR("Jarod Wilson <jarod@redhat.com>");