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