1 /* fusionhdtv-mce.h - Keytable for fusionhdtv_mce 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>
14 #include <linux/module.h>
16 /* DViCO FUSION HDTV MCE remote */
18 static struct rc_map_table fusionhdtv_mce
[] = {
37 { 0x02, KEY_TV
}, /* Labeled DTV on remote */
40 { 0x1e, KEY_FAVORITES
}, /* Labeled CPF on remote */
42 { 0x46, KEY_POWER2
}, /* TV On/Off button on remote */
43 { 0x0a, KEY_EPG
}, /* Labeled Guide on remote */
46 { 0x59, KEY_INFO
}, /* Labeled MORE on remote */
47 { 0x4d, KEY_MENU
}, /* Labeled DVDMENU on remote */
48 { 0x55, KEY_CYCLEWINDOWS
}, /* Labeled ALT-TAB on remote */
50 { 0x0f, KEY_PREVIOUSSONG
}, /* Labeled |<< REPLAY on remote */
51 { 0x12, KEY_NEXTSONG
}, /* Labeled >>| SKIP on remote */
52 { 0x42, KEY_ENTER
}, /* Labeled START with a green
53 MS windows logo on remote */
55 { 0x15, KEY_VOLUMEUP
},
56 { 0x05, KEY_VOLUMEDOWN
},
57 { 0x11, KEY_CHANNELUP
},
58 { 0x09, KEY_CHANNELDOWN
},
64 { 0x13, KEY_MODE
}, /* 4:3 16:9 select */
68 { 0x47, KEY_PLAYPAUSE
},
69 { 0x4f, KEY_FASTFORWARD
},
76 static struct rc_map_list fusionhdtv_mce_map
= {
78 .scan
= fusionhdtv_mce
,
79 .size
= ARRAY_SIZE(fusionhdtv_mce
),
80 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
81 .name
= RC_MAP_FUSIONHDTV_MCE
,
85 static int __init
init_rc_map_fusionhdtv_mce(void)
87 return rc_map_register(&fusionhdtv_mce_map
);
90 static void __exit
exit_rc_map_fusionhdtv_mce(void)
92 rc_map_unregister(&fusionhdtv_mce_map
);
95 module_init(init_rc_map_fusionhdtv_mce
)
96 module_exit(exit_rc_map_fusionhdtv_mce
)
98 MODULE_LICENSE("GPL");
99 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");