1 /* behold.h - Keytable for behold 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 * Igor Kuznetsov <igk72@ya.ru>
17 * Andrey J. Melnikov <temnota@kmv.ru>
19 * Keytable is used by BeholdTV 60x series, M6 series at
20 * least, and probably other cards too.
21 * The "ascii-art picture" below (in comments, first row
22 * is the keycode in hex, and subsequent row(s) shows
23 * the button labels (several variants when appropriate)
24 * helps to descide which keycodes to assign to the buttons.
27 static struct rc_map_table behold
[] = {
32 { 0x6b861c, KEY_TUNER
}, /* XXX KEY_TV / KEY_RADIO */
33 { 0x6b8612, KEY_POWER
},
57 { 0x6b860a, KEY_AGAIN
},
59 { 0x6b8617, KEY_MODE
},
64 { 0x6b8614, KEY_SCREEN
},
65 { 0x6b8610, KEY_ZOOM
},
76 { 0x6b860b, KEY_CHANNELUP
},
77 { 0x6b8618, KEY_VOLUMEDOWN
},
78 { 0x6b8616, KEY_OK
}, /* XXX KEY_ENTER */
79 { 0x6b860c, KEY_VOLUMEUP
},
80 { 0x6b8615, KEY_CHANNELDOWN
},
85 { 0x6b8611, KEY_MUTE
},
86 { 0x6b860d, KEY_INFO
},
89 * RECORD PLAY/PAUSE STOP *
92 *TELETEXT AUDIO SOURCE *
95 { 0x6b860f, KEY_RECORD
},
96 { 0x6b861b, KEY_PLAYPAUSE
},
97 { 0x6b861a, KEY_STOP
},
98 { 0x6b860e, KEY_TEXT
},
99 { 0x6b861f, KEY_RED
}, /*XXX KEY_AUDIO */
100 { 0x6b861e, KEY_VIDEO
},
103 * SLEEP PREVIEW DVB *
106 { 0x6b861d, KEY_SLEEP
},
107 { 0x6b8613, KEY_GREEN
},
108 { 0x6b8619, KEY_BLUE
}, /* XXX KEY_SAT */
113 { 0x6b8658, KEY_SLOW
},
114 { 0x6b865c, KEY_CAMERA
},
118 static struct rc_map_list behold_map
= {
121 .size
= ARRAY_SIZE(behold
),
122 .rc_type
= RC_TYPE_NEC
,
123 .name
= RC_MAP_BEHOLD
,
127 static int __init
init_rc_map_behold(void)
129 return rc_map_register(&behold_map
);
132 static void __exit
exit_rc_map_behold(void)
134 rc_map_unregister(&behold_map
);
137 module_init(init_rc_map_behold
)
138 module_exit(exit_rc_map_behold
)
140 MODULE_LICENSE("GPL");
141 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");