1*4882a593Smuzhiyun // SPDX-License-Identifier: GPL-2.0-or-later
2*4882a593Smuzhiyun /*
3*4882a593Smuzhiyun * Medion X10 OR22/OR24 RF remote keytable
4*4882a593Smuzhiyun *
5*4882a593Smuzhiyun * Copyright (C) 2012 Anssi Hannula <anssi.hannula@iki.fi>
6*4882a593Smuzhiyun *
7*4882a593Smuzhiyun * This keymap is for several Medion X10 remotes that have the Windows MCE
8*4882a593Smuzhiyun * button. This has been tested with a "RF VISTA Remote Control", OR24V,
9*4882a593Smuzhiyun * P/N 20035335, but should work with other variants that have the same
10*4882a593Smuzhiyun * buttons, such as OR22V and OR24E.
11*4882a593Smuzhiyun */
12*4882a593Smuzhiyun
13*4882a593Smuzhiyun #include <linux/module.h>
14*4882a593Smuzhiyun #include <media/rc-map.h>
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun static struct rc_map_table medion_x10_or2x[] = {
17*4882a593Smuzhiyun { 0x02, KEY_POWER },
18*4882a593Smuzhiyun { 0x16, KEY_TEXT }, /* "T" in a box, for teletext */
19*4882a593Smuzhiyun
20*4882a593Smuzhiyun { 0x09, KEY_VOLUMEUP },
21*4882a593Smuzhiyun { 0x08, KEY_VOLUMEDOWN },
22*4882a593Smuzhiyun { 0x00, KEY_MUTE },
23*4882a593Smuzhiyun { 0x0b, KEY_CHANNELUP },
24*4882a593Smuzhiyun { 0x0c, KEY_CHANNELDOWN },
25*4882a593Smuzhiyun
26*4882a593Smuzhiyun { 0x32, KEY_RED },
27*4882a593Smuzhiyun { 0x33, KEY_GREEN },
28*4882a593Smuzhiyun { 0x34, KEY_YELLOW },
29*4882a593Smuzhiyun { 0x35, KEY_BLUE },
30*4882a593Smuzhiyun
31*4882a593Smuzhiyun { 0x18, KEY_PVR }, /* record symbol inside a tv symbol */
32*4882a593Smuzhiyun { 0x04, KEY_DVD }, /* disc symbol */
33*4882a593Smuzhiyun { 0x31, KEY_EPG }, /* a tv schedule symbol */
34*4882a593Smuzhiyun { 0x1c, KEY_TV }, /* play symbol inside a tv symbol */
35*4882a593Smuzhiyun { 0x20, KEY_BACK },
36*4882a593Smuzhiyun { 0x2f, KEY_INFO },
37*4882a593Smuzhiyun
38*4882a593Smuzhiyun { 0x1a, KEY_UP },
39*4882a593Smuzhiyun { 0x22, KEY_DOWN },
40*4882a593Smuzhiyun { 0x1d, KEY_LEFT },
41*4882a593Smuzhiyun { 0x1f, KEY_RIGHT },
42*4882a593Smuzhiyun { 0x1e, KEY_OK },
43*4882a593Smuzhiyun
44*4882a593Smuzhiyun { 0x1b, KEY_MEDIA }, /* Windows MCE button */
45*4882a593Smuzhiyun
46*4882a593Smuzhiyun { 0x21, KEY_PREVIOUS },
47*4882a593Smuzhiyun { 0x23, KEY_NEXT },
48*4882a593Smuzhiyun { 0x24, KEY_REWIND },
49*4882a593Smuzhiyun { 0x26, KEY_FORWARD },
50*4882a593Smuzhiyun { 0x25, KEY_PLAY },
51*4882a593Smuzhiyun { 0x28, KEY_STOP },
52*4882a593Smuzhiyun { 0x29, KEY_PAUSE },
53*4882a593Smuzhiyun { 0x27, KEY_RECORD },
54*4882a593Smuzhiyun
55*4882a593Smuzhiyun { 0x0d, KEY_NUMERIC_1 },
56*4882a593Smuzhiyun { 0x0e, KEY_NUMERIC_2 },
57*4882a593Smuzhiyun { 0x0f, KEY_NUMERIC_3 },
58*4882a593Smuzhiyun { 0x10, KEY_NUMERIC_4 },
59*4882a593Smuzhiyun { 0x11, KEY_NUMERIC_5 },
60*4882a593Smuzhiyun { 0x12, KEY_NUMERIC_6 },
61*4882a593Smuzhiyun { 0x13, KEY_NUMERIC_7 },
62*4882a593Smuzhiyun { 0x14, KEY_NUMERIC_8 },
63*4882a593Smuzhiyun { 0x15, KEY_NUMERIC_9 },
64*4882a593Smuzhiyun { 0x17, KEY_NUMERIC_0 },
65*4882a593Smuzhiyun { 0x30, KEY_CLEAR },
66*4882a593Smuzhiyun { 0x36, KEY_ENTER },
67*4882a593Smuzhiyun { 0x37, KEY_NUMERIC_STAR },
68*4882a593Smuzhiyun { 0x38, KEY_NUMERIC_POUND },
69*4882a593Smuzhiyun };
70*4882a593Smuzhiyun
71*4882a593Smuzhiyun static struct rc_map_list medion_x10_or2x_map = {
72*4882a593Smuzhiyun .map = {
73*4882a593Smuzhiyun .scan = medion_x10_or2x,
74*4882a593Smuzhiyun .size = ARRAY_SIZE(medion_x10_or2x),
75*4882a593Smuzhiyun .rc_proto = RC_PROTO_OTHER,
76*4882a593Smuzhiyun .name = RC_MAP_MEDION_X10_OR2X,
77*4882a593Smuzhiyun }
78*4882a593Smuzhiyun };
79*4882a593Smuzhiyun
init_rc_map_medion_x10_or2x(void)80*4882a593Smuzhiyun static int __init init_rc_map_medion_x10_or2x(void)
81*4882a593Smuzhiyun {
82*4882a593Smuzhiyun return rc_map_register(&medion_x10_or2x_map);
83*4882a593Smuzhiyun }
84*4882a593Smuzhiyun
exit_rc_map_medion_x10_or2x(void)85*4882a593Smuzhiyun static void __exit exit_rc_map_medion_x10_or2x(void)
86*4882a593Smuzhiyun {
87*4882a593Smuzhiyun rc_map_unregister(&medion_x10_or2x_map);
88*4882a593Smuzhiyun }
89*4882a593Smuzhiyun
90*4882a593Smuzhiyun module_init(init_rc_map_medion_x10_or2x)
91*4882a593Smuzhiyun module_exit(exit_rc_map_medion_x10_or2x)
92*4882a593Smuzhiyun
93*4882a593Smuzhiyun MODULE_DESCRIPTION("Medion X10 OR22/OR24 RF remote keytable");
94*4882a593Smuzhiyun MODULE_AUTHOR("Anssi Hannula <anssi.hannula@iki.fi>");
95*4882a593Smuzhiyun MODULE_LICENSE("GPL");
96