• 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.36/drivers/media/IR/keymaps/
1/* npgtech.h - Keytable for npgtech 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
15static struct ir_scancode npgtech[] = {
16	{ 0x1d, KEY_SWITCHVIDEOMODE },	/* switch inputs */
17	{ 0x2a, KEY_FRONT },
18
19	{ 0x3e, KEY_1 },
20	{ 0x02, KEY_2 },
21	{ 0x06, KEY_3 },
22	{ 0x0a, KEY_4 },
23	{ 0x0e, KEY_5 },
24	{ 0x12, KEY_6 },
25	{ 0x16, KEY_7 },
26	{ 0x1a, KEY_8 },
27	{ 0x1e, KEY_9 },
28	{ 0x3a, KEY_0 },
29	{ 0x22, KEY_NUMLOCK },		/* -/-- */
30	{ 0x20, KEY_REFRESH },
31
32	{ 0x03, KEY_BRIGHTNESSDOWN },
33	{ 0x28, KEY_AUDIO },
34	{ 0x3c, KEY_CHANNELUP },
35	{ 0x3f, KEY_VOLUMEDOWN },
36	{ 0x2e, KEY_MUTE },
37	{ 0x3b, KEY_VOLUMEUP },
38	{ 0x00, KEY_CHANNELDOWN },
39	{ 0x07, KEY_BRIGHTNESSUP },
40	{ 0x2c, KEY_TEXT },
41
42	{ 0x37, KEY_RECORD },
43	{ 0x17, KEY_PLAY },
44	{ 0x13, KEY_PAUSE },
45	{ 0x26, KEY_STOP },
46	{ 0x18, KEY_FASTFORWARD },
47	{ 0x14, KEY_REWIND },
48	{ 0x33, KEY_ZOOM },
49	{ 0x32, KEY_KEYBOARD },
50	{ 0x30, KEY_GOTO },		/* Pointing arrow */
51	{ 0x36, KEY_MACRO },		/* Maximize/Minimize (yellow) */
52	{ 0x0b, KEY_RADIO },
53	{ 0x10, KEY_POWER },
54
55};
56
57static struct rc_keymap npgtech_map = {
58	.map = {
59		.scan    = npgtech,
60		.size    = ARRAY_SIZE(npgtech),
61		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
62		.name    = RC_MAP_NPGTECH,
63	}
64};
65
66static int __init init_rc_map_npgtech(void)
67{
68	return ir_register_map(&npgtech_map);
69}
70
71static void __exit exit_rc_map_npgtech(void)
72{
73	ir_unregister_map(&npgtech_map);
74}
75
76module_init(init_rc_map_npgtech)
77module_exit(exit_rc_map_npgtech)
78
79MODULE_LICENSE("GPL");
80MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
81