• 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/* tt-1500.h - Keytable for tt_1500 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/* for the Technotrend 1500 bundled remotes (grey and black): */
16
17static struct ir_scancode tt_1500[] = {
18	{ 0x01, KEY_POWER },
19	{ 0x02, KEY_SHUFFLE },		/* ? double-arrow key */
20	{ 0x03, KEY_1 },
21	{ 0x04, KEY_2 },
22	{ 0x05, KEY_3 },
23	{ 0x06, KEY_4 },
24	{ 0x07, KEY_5 },
25	{ 0x08, KEY_6 },
26	{ 0x09, KEY_7 },
27	{ 0x0a, KEY_8 },
28	{ 0x0b, KEY_9 },
29	{ 0x0c, KEY_0 },
30	{ 0x0d, KEY_UP },
31	{ 0x0e, KEY_LEFT },
32	{ 0x0f, KEY_OK },
33	{ 0x10, KEY_RIGHT },
34	{ 0x11, KEY_DOWN },
35	{ 0x12, KEY_INFO },
36	{ 0x13, KEY_EXIT },
37	{ 0x14, KEY_RED },
38	{ 0x15, KEY_GREEN },
39	{ 0x16, KEY_YELLOW },
40	{ 0x17, KEY_BLUE },
41	{ 0x18, KEY_MUTE },
42	{ 0x19, KEY_TEXT },
43	{ 0x1a, KEY_MODE },		/* ? TV/Radio */
44	{ 0x21, KEY_OPTION },
45	{ 0x22, KEY_EPG },
46	{ 0x23, KEY_CHANNELUP },
47	{ 0x24, KEY_CHANNELDOWN },
48	{ 0x25, KEY_VOLUMEUP },
49	{ 0x26, KEY_VOLUMEDOWN },
50	{ 0x27, KEY_SETUP },
51	{ 0x3a, KEY_RECORD },		/* these keys are only in the black remote */
52	{ 0x3b, KEY_PLAY },
53	{ 0x3c, KEY_STOP },
54	{ 0x3d, KEY_REWIND },
55	{ 0x3e, KEY_PAUSE },
56	{ 0x3f, KEY_FORWARD },
57};
58
59static struct rc_keymap tt_1500_map = {
60	.map = {
61		.scan    = tt_1500,
62		.size    = ARRAY_SIZE(tt_1500),
63		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
64		.name    = RC_MAP_TT_1500,
65	}
66};
67
68static int __init init_rc_map_tt_1500(void)
69{
70	return ir_register_map(&tt_1500_map);
71}
72
73static void __exit exit_rc_map_tt_1500(void)
74{
75	ir_unregister_map(&tt_1500_map);
76}
77
78module_init(init_rc_map_tt_1500)
79module_exit(exit_rc_map_tt_1500)
80
81MODULE_LICENSE("GPL");
82MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
83