1/* cinergy-1400.h - Keytable for cinergy_1400 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
16/* Cinergy 1400 DVB-T */
17
18static struct rc_map_table cinergy_1400[] = {
19	{ 0x01, KEY_POWER },
20	{ 0x02, KEY_1 },
21	{ 0x03, KEY_2 },
22	{ 0x04, KEY_3 },
23	{ 0x05, KEY_4 },
24	{ 0x06, KEY_5 },
25	{ 0x07, KEY_6 },
26	{ 0x08, KEY_7 },
27	{ 0x09, KEY_8 },
28	{ 0x0a, KEY_9 },
29	{ 0x0c, KEY_0 },
30
31	{ 0x0b, KEY_VIDEO },
32	{ 0x0d, KEY_REFRESH },
33	{ 0x0e, KEY_SELECT },
34	{ 0x0f, KEY_EPG },
35	{ 0x10, KEY_UP },
36	{ 0x11, KEY_LEFT },
37	{ 0x12, KEY_OK },
38	{ 0x13, KEY_RIGHT },
39	{ 0x14, KEY_DOWN },
40	{ 0x15, KEY_TEXT },
41	{ 0x16, KEY_INFO },
42
43	{ 0x17, KEY_RED },
44	{ 0x18, KEY_GREEN },
45	{ 0x19, KEY_YELLOW },
46	{ 0x1a, KEY_BLUE },
47
48	{ 0x1b, KEY_CHANNELUP },
49	{ 0x1c, KEY_VOLUMEUP },
50	{ 0x1d, KEY_MUTE },
51	{ 0x1e, KEY_VOLUMEDOWN },
52	{ 0x1f, KEY_CHANNELDOWN },
53
54	{ 0x40, KEY_PAUSE },
55	{ 0x4c, KEY_PLAY },
56	{ 0x58, KEY_RECORD },
57	{ 0x54, KEY_PREVIOUS },
58	{ 0x48, KEY_STOP },
59	{ 0x5c, KEY_NEXT },
60};
61
62static struct rc_map_list cinergy_1400_map = {
63	.map = {
64		.scan    = cinergy_1400,
65		.size    = ARRAY_SIZE(cinergy_1400),
66		.rc_type = RC_TYPE_UNKNOWN,	/* Legacy IR type */
67		.name    = RC_MAP_CINERGY_1400,
68	}
69};
70
71static int __init init_rc_map_cinergy_1400(void)
72{
73	return rc_map_register(&cinergy_1400_map);
74}
75
76static void __exit exit_rc_map_cinergy_1400(void)
77{
78	rc_map_unregister(&cinergy_1400_map);
79}
80
81module_init(init_rc_map_cinergy_1400)
82module_exit(exit_rc_map_cinergy_1400)
83
84MODULE_LICENSE("GPL");
85MODULE_AUTHOR("Mauro Carvalho Chehab");
86