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