1/* ITE Generic remotes Version 1
2 *
3 * Copyright (C) 2012 Malcolm Priestley (tvboxspy@gmail.com)
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#include <media/rc-map.h>
12#include <linux/module.h>
13
14
15static struct rc_map_table it913x_v1_rc[] = {
16	/* Type 1 */
17	{ 0x61d601, KEY_VIDEO },           /* Source */
18	{ 0x61d602, KEY_3 },
19	{ 0x61d603, KEY_POWER },           /* ShutDown */
20	{ 0x61d604, KEY_1 },
21	{ 0x61d605, KEY_5 },
22	{ 0x61d606, KEY_6 },
23	{ 0x61d607, KEY_CHANNELDOWN },     /* CH- */
24	{ 0x61d608, KEY_2 },
25	{ 0x61d609, KEY_CHANNELUP },       /* CH+ */
26	{ 0x61d60a, KEY_9 },
27	{ 0x61d60b, KEY_ZOOM },            /* Zoom */
28	{ 0x61d60c, KEY_7 },
29	{ 0x61d60d, KEY_8 },
30	{ 0x61d60e, KEY_VOLUMEUP },        /* Vol+ */
31	{ 0x61d60f, KEY_4 },
32	{ 0x61d610, KEY_ESC },             /* [back up arrow] */
33	{ 0x61d611, KEY_0 },
34	{ 0x61d612, KEY_OK },              /* [enter arrow] */
35	{ 0x61d613, KEY_VOLUMEDOWN },      /* Vol- */
36	{ 0x61d614, KEY_RECORD },          /* Rec */
37	{ 0x61d615, KEY_STOP },            /* Stop */
38	{ 0x61d616, KEY_PLAY },            /* Play */
39	{ 0x61d617, KEY_MUTE },            /* Mute */
40	{ 0x61d618, KEY_UP },
41	{ 0x61d619, KEY_DOWN },
42	{ 0x61d61a, KEY_LEFT },
43	{ 0x61d61b, KEY_RIGHT },
44	{ 0x61d61c, KEY_RED },
45	{ 0x61d61d, KEY_GREEN },
46	{ 0x61d61e, KEY_YELLOW },
47	{ 0x61d61f, KEY_BLUE },
48	{ 0x61d643, KEY_POWER2 },          /* [red power button] */
49	/* Type 2 - 20 buttons */
50	{ 0x807f0d, KEY_0 },
51	{ 0x807f04, KEY_1 },
52	{ 0x807f05, KEY_2 },
53	{ 0x807f06, KEY_3 },
54	{ 0x807f07, KEY_4 },
55	{ 0x807f08, KEY_5 },
56	{ 0x807f09, KEY_6 },
57	{ 0x807f0a, KEY_7 },
58	{ 0x807f1b, KEY_8 },
59	{ 0x807f1f, KEY_9 },
60	{ 0x807f12, KEY_POWER },
61	{ 0x807f01, KEY_MEDIA_REPEAT}, /* Recall */
62	{ 0x807f19, KEY_PAUSE }, /* Timeshift */
63	{ 0x807f1e, KEY_VOLUMEUP }, /* 2 x -/+ Keys not marked */
64	{ 0x807f03, KEY_VOLUMEDOWN }, /* Volume defined as right hand*/
65	{ 0x807f1a, KEY_CHANNELUP },
66	{ 0x807f02, KEY_CHANNELDOWN },
67	{ 0x807f0c, KEY_ZOOM },
68	{ 0x807f00, KEY_RECORD },
69	{ 0x807f0e, KEY_STOP },
70};
71
72static struct rc_map_list it913x_v1_map = {
73	.map = {
74		.scan    = it913x_v1_rc,
75		.size    = ARRAY_SIZE(it913x_v1_rc),
76		.rc_type = RC_TYPE_NEC,
77		.name    = RC_MAP_IT913X_V1,
78	}
79};
80
81static int __init init_rc_it913x_v1_map(void)
82{
83	return rc_map_register(&it913x_v1_map);
84}
85
86static void __exit exit_rc_it913x_v1_map(void)
87{
88	rc_map_unregister(&it913x_v1_map);
89}
90
91module_init(init_rc_it913x_v1_map)
92module_exit(exit_rc_it913x_v1_map)
93
94MODULE_LICENSE("GPL");
95MODULE_AUTHOR("Malcolm Priestley tvboxspy@gmail.com");
96