1 /* rc5-tv.h - Keytable for rc5_tv 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>
15 /* generic RC5 keytable */
16 /* see http://users.pandora.be/nenya/electronics/rc5/codes00.htm */
17 /* used by old (black) Hauppauge remotes */
19 static struct rc_map_table rc5_tv
[] = {
32 { 0x0b, KEY_CHANNEL
}, /* channel / program (japan: 11) */
33 { 0x0c, KEY_POWER
}, /* standby */
34 { 0x0d, KEY_MUTE
}, /* mute / demute */
35 { 0x0f, KEY_TV
}, /* display */
36 { 0x10, KEY_VOLUMEUP
},
37 { 0x11, KEY_VOLUMEDOWN
},
38 { 0x12, KEY_BRIGHTNESSUP
},
39 { 0x13, KEY_BRIGHTNESSDOWN
},
40 { 0x1e, KEY_SEARCH
}, /* search + */
41 { 0x20, KEY_CHANNELUP
}, /* channel / program + */
42 { 0x21, KEY_CHANNELDOWN
}, /* channel / program - */
43 { 0x22, KEY_CHANNEL
}, /* alt / channel */
44 { 0x23, KEY_LANGUAGE
}, /* 1st / 2nd language */
45 { 0x26, KEY_SLEEP
}, /* sleeptimer */
46 { 0x2e, KEY_MENU
}, /* 2nd controls (USA: menu) */
52 { 0x37, KEY_RECORD
}, /* recording */
53 { 0x3c, KEY_TEXT
}, /* teletext submode (Japan: 12) */
54 { 0x3d, KEY_SUSPEND
}, /* system standby */
58 static struct rc_map_list rc5_tv_map
= {
61 .size
= ARRAY_SIZE(rc5_tv
),
62 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
63 .name
= RC_MAP_RC5_TV
,
67 static int __init
init_rc_map_rc5_tv(void)
69 return rc_map_register(&rc5_tv_map
);
72 static void __exit
exit_rc_map_rc5_tv(void)
74 rc_map_unregister(&rc5_tv_map
);
77 module_init(init_rc_map_rc5_tv
)
78 module_exit(exit_rc_map_rc5_tv
)
80 MODULE_LICENSE("GPL");
81 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");