1 /* asus-pc39.h - Keytable for asus_pc39 Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
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.
13 #include <media/rc-map.h>
16 * Marc Fargas <telenieko@telenieko.com>
17 * this is the remote control that comes with the asus p7131
18 * which has a label saying is "Model PC-39"
21 static struct rc_map_table asus_pc39
[] = {
34 { 0x0801, KEY_RADIO
}, /* radio */
35 { 0x083c, KEY_MENU
}, /* dvd/menu */
36 { 0x0815, KEY_VOLUMEUP
},
37 { 0x0826, KEY_VOLUMEDOWN
},
41 { 0x0810, KEY_RIGHT
},
42 { 0x081a, KEY_VIDEO
}, /* video */
43 { 0x0806, KEY_AUDIO
}, /* music */
45 { 0x081e, KEY_TV
}, /* tv */
46 { 0x0822, KEY_EXIT
}, /* back */
47 { 0x0835, KEY_CHANNELUP
}, /* channel / program + */
48 { 0x0824, KEY_CHANNELDOWN
}, /* channel / program - */
49 { 0x0825, KEY_ENTER
}, /* enter */
51 { 0x0839, KEY_PAUSE
}, /* play/pause */
52 { 0x0821, KEY_PREVIOUS
}, /* rew */
53 { 0x0819, KEY_NEXT
}, /* forward */
54 { 0x0831, KEY_REWIND
}, /* backward << */
55 { 0x0805, KEY_FASTFORWARD
}, /* forward >> */
57 { 0x0811, KEY_RECORD
}, /* recording */
58 { 0x0829, KEY_POWER
}, /* the button that reads "close" */
60 { 0x082e, KEY_ZOOM
}, /* full screen */
61 { 0x082c, KEY_MACRO
}, /* recall */
62 { 0x081c, KEY_HOME
}, /* home */
63 { 0x083a, KEY_PVR
}, /* picture */
64 { 0x0802, KEY_MUTE
}, /* mute */
65 { 0x083e, KEY_DVD
}, /* dvd */
68 static struct rc_map_list asus_pc39_map
= {
71 .size
= ARRAY_SIZE(asus_pc39
),
72 .rc_type
= RC_TYPE_RC5
,
73 .name
= RC_MAP_ASUS_PC39
,
77 static int __init
init_rc_map_asus_pc39(void)
79 return rc_map_register(&asus_pc39_map
);
82 static void __exit
exit_rc_map_asus_pc39(void)
84 rc_map_unregister(&asus_pc39_map
);
87 module_init(init_rc_map_asus_pc39
)
88 module_exit(exit_rc_map_asus_pc39
)
90 MODULE_LICENSE("GPL");
91 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");