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