• 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/* tevii-nec.h - Keytable for tevii_nec 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 tevii_nec[] = {
16	{ 0x0a, KEY_POWER2},
17	{ 0x0c, KEY_MUTE},
18	{ 0x11, KEY_1},
19	{ 0x12, KEY_2},
20	{ 0x13, KEY_3},
21	{ 0x14, KEY_4},
22	{ 0x15, KEY_5},
23	{ 0x16, KEY_6},
24	{ 0x17, KEY_7},
25	{ 0x18, KEY_8},
26	{ 0x19, KEY_9},
27	{ 0x10, KEY_0},
28	{ 0x1c, KEY_MENU},
29	{ 0x0f, KEY_VOLUMEDOWN},
30	{ 0x1a, KEY_LAST},
31	{ 0x0e, KEY_OPEN},
32	{ 0x04, KEY_RECORD},
33	{ 0x09, KEY_VOLUMEUP},
34	{ 0x08, KEY_CHANNELUP},
35	{ 0x07, KEY_PVR},
36	{ 0x0b, KEY_TIME},
37	{ 0x02, KEY_RIGHT},
38	{ 0x03, KEY_LEFT},
39	{ 0x00, KEY_UP},
40	{ 0x1f, KEY_OK},
41	{ 0x01, KEY_DOWN},
42	{ 0x05, KEY_TUNER},
43	{ 0x06, KEY_CHANNELDOWN},
44	{ 0x40, KEY_PLAYPAUSE},
45	{ 0x1e, KEY_REWIND},
46	{ 0x1b, KEY_FAVORITES},
47	{ 0x1d, KEY_BACK},
48	{ 0x4d, KEY_FASTFORWARD},
49	{ 0x44, KEY_EPG},
50	{ 0x4c, KEY_INFO},
51	{ 0x41, KEY_AB},
52	{ 0x43, KEY_AUDIO},
53	{ 0x45, KEY_SUBTITLE},
54	{ 0x4a, KEY_LIST},
55	{ 0x46, KEY_F1},
56	{ 0x47, KEY_F2},
57	{ 0x5e, KEY_F3},
58	{ 0x5c, KEY_F4},
59	{ 0x52, KEY_F5},
60	{ 0x5a, KEY_F6},
61	{ 0x56, KEY_MODE},
62	{ 0x58, KEY_SWITCHVIDEOMODE},
63};
64
65static struct rc_keymap tevii_nec_map = {
66	.map = {
67		.scan    = tevii_nec,
68		.size    = ARRAY_SIZE(tevii_nec),
69		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
70		.name    = RC_MAP_TEVII_NEC,
71	}
72};
73
74static int __init init_rc_map_tevii_nec(void)
75{
76	return ir_register_map(&tevii_nec_map);
77}
78
79static void __exit exit_rc_map_tevii_nec(void)
80{
81	ir_unregister_map(&tevii_nec_map);
82}
83
84module_init(init_rc_map_tevii_nec)
85module_exit(exit_rc_map_tevii_nec)
86
87MODULE_LICENSE("GPL");
88MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
89