2 * ATI X10 RF remote keytable
4 * Copyright (C) 2011 Anssi Hannula <anssi.hannula@?ki.fi>
6 * This file is based on the static generic keytable previously found in
7 * ati_remote.c, which is
8 * Copyright (c) 2004 Torrey Hoffman <thoffman@arnor.net>
9 * Copyright (c) 2002 Vladimir Dergachev
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 #include <linux/module.h>
27 #include <media/rc-map.h>
29 static struct rc_map_table ati_x10
[] = {
47 { 0x18, KEY_KPENTER
}, /* "check" */
48 { 0x16, KEY_MENU
}, /* "menu" */
49 { 0x02, KEY_POWER
}, /* Power */
50 { 0x03, KEY_TV
}, /* TV */
51 { 0x04, KEY_DVD
}, /* DVD */
52 { 0x05, KEY_WWW
}, /* WEB */
53 { 0x06, KEY_BOOKMARKS
}, /* "book" */
54 { 0x07, KEY_EDIT
}, /* "hand" */
55 { 0x1c, KEY_COFFEE
}, /* "timer" */
56 { 0x20, KEY_FRONT
}, /* "max" */
57 { 0x1d, KEY_LEFT
}, /* left */
58 { 0x1f, KEY_RIGHT
}, /* right */
59 { 0x22, KEY_DOWN
}, /* down */
60 { 0x1a, KEY_UP
}, /* up */
61 { 0x1e, KEY_OK
}, /* "OK" */
62 { 0x09, KEY_VOLUMEDOWN
}, /* VOL + */
63 { 0x08, KEY_VOLUMEUP
}, /* VOL - */
64 { 0x0a, KEY_MUTE
}, /* MUTE */
65 { 0x0b, KEY_CHANNELUP
}, /* CH + */
66 { 0x0c, KEY_CHANNELDOWN
},/* CH - */
67 { 0x27, KEY_RECORD
}, /* ( o) red */
68 { 0x25, KEY_PLAY
}, /* ( >) */
69 { 0x24, KEY_REWIND
}, /* (<<) */
70 { 0x26, KEY_FORWARD
}, /* (>>) */
71 { 0x28, KEY_STOP
}, /* ([]) */
72 { 0x29, KEY_PAUSE
}, /* ('') */
73 { 0x2b, KEY_PREVIOUS
}, /* (<-) */
74 { 0x2a, KEY_NEXT
}, /* (>+) */
75 { 0x2d, KEY_INFO
}, /* PLAYING */
76 { 0x2e, KEY_HOME
}, /* TOP */
77 { 0x2f, KEY_END
}, /* END */
78 { 0x30, KEY_SELECT
}, /* SELECT */
81 static struct rc_map_list ati_x10_map
= {
84 .size
= ARRAY_SIZE(ati_x10
),
85 .rc_type
= RC_TYPE_OTHER
,
86 .name
= RC_MAP_ATI_X10
,
90 static int __init
init_rc_map_ati_x10(void)
92 return rc_map_register(&ati_x10_map
);
95 static void __exit
exit_rc_map_ati_x10(void)
97 rc_map_unregister(&ati_x10_map
);
100 module_init(init_rc_map_ati_x10
)
101 module_exit(exit_rc_map_ati_x10
)
103 MODULE_LICENSE("GPL");
104 MODULE_AUTHOR("Anssi Hannula <anssi.hannula@iki.fi>");