• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/media/IR/keymaps/
1/* rc5-tv.h - Keytable for rc5_tv Remote Controller
2 *
3 * keymap imported from ir-keymaps.c
4 *
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
6 *
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.
11 */
12
13#include <media/rc-map.h>
14
15/* generic RC5 keytable                                          */
16/* see http://users.pandora.be/nenya/electronics/rc5/codes00.htm */
17/* used by old (black) Hauppauge remotes                         */
18
19static struct ir_scancode rc5_tv[] = {
20	/* Keys 0 to 9 */
21	{ 0x00, KEY_0 },
22	{ 0x01, KEY_1 },
23	{ 0x02, KEY_2 },
24	{ 0x03, KEY_3 },
25	{ 0x04, KEY_4 },
26	{ 0x05, KEY_5 },
27	{ 0x06, KEY_6 },
28	{ 0x07, KEY_7 },
29	{ 0x08, KEY_8 },
30	{ 0x09, KEY_9 },
31
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) */
47	{ 0x30, KEY_PAUSE },
48	{ 0x32, KEY_REWIND },
49	{ 0x33, KEY_GOTO },
50	{ 0x35, KEY_PLAY },
51	{ 0x36, KEY_STOP },
52	{ 0x37, KEY_RECORD },		/* recording */
53	{ 0x3c, KEY_TEXT },		/* teletext submode (Japan: 12) */
54	{ 0x3d, KEY_SUSPEND },		/* system standby */
55
56};
57
58static struct rc_keymap rc5_tv_map = {
59	.map = {
60		.scan    = rc5_tv,
61		.size    = ARRAY_SIZE(rc5_tv),
62		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
63		.name    = RC_MAP_RC5_TV,
64	}
65};
66
67static int __init init_rc_map_rc5_tv(void)
68{
69	return ir_register_map(&rc5_tv_map);
70}
71
72static void __exit exit_rc_map_rc5_tv(void)
73{
74	ir_unregister_map(&rc5_tv_map);
75}
76
77module_init(init_rc_map_rc5_tv)
78module_exit(exit_rc_map_rc5_tv)
79
80MODULE_LICENSE("GPL");
81MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
82