xref: /linux/drivers/media/rc/keymaps/rc-kaiomy.c (revision a13d7201d7deedcbb6ac6efa94a1a7d34d3d79ec)
1 /* kaiomy.h - Keytable for kaiomy 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 /* Kaiomy TVnPC U2
17    Mauro Carvalho Chehab <mchehab@infradead.org>
18  */
19 
20 static struct rc_map_table kaiomy[] = {
21 	{ 0x43, KEY_POWER2},
22 	{ 0x01, KEY_LIST},
23 	{ 0x0b, KEY_ZOOM},
24 	{ 0x03, KEY_POWER},
25 
26 	{ 0x04, KEY_1},
27 	{ 0x08, KEY_2},
28 	{ 0x02, KEY_3},
29 
30 	{ 0x0f, KEY_4},
31 	{ 0x05, KEY_5},
32 	{ 0x06, KEY_6},
33 
34 	{ 0x0c, KEY_7},
35 	{ 0x0d, KEY_8},
36 	{ 0x0a, KEY_9},
37 
38 	{ 0x11, KEY_0},
39 
40 	{ 0x09, KEY_CHANNELUP},
41 	{ 0x07, KEY_CHANNELDOWN},
42 
43 	{ 0x0e, KEY_VOLUMEUP},
44 	{ 0x13, KEY_VOLUMEDOWN},
45 
46 	{ 0x10, KEY_HOME},
47 	{ 0x12, KEY_ENTER},
48 
49 	{ 0x14, KEY_RECORD},
50 	{ 0x15, KEY_STOP},
51 	{ 0x16, KEY_PLAY},
52 	{ 0x17, KEY_MUTE},
53 
54 	{ 0x18, KEY_UP},
55 	{ 0x19, KEY_DOWN},
56 	{ 0x1a, KEY_LEFT},
57 	{ 0x1b, KEY_RIGHT},
58 
59 	{ 0x1c, KEY_RED},
60 	{ 0x1d, KEY_GREEN},
61 	{ 0x1e, KEY_YELLOW},
62 	{ 0x1f, KEY_BLUE},
63 };
64 
65 static struct rc_map_list kaiomy_map = {
66 	.map = {
67 		.scan    = kaiomy,
68 		.size    = ARRAY_SIZE(kaiomy),
69 		.rc_type = RC_TYPE_UNKNOWN,	/* Legacy IR type */
70 		.name    = RC_MAP_KAIOMY,
71 	}
72 };
73 
74 static int __init init_rc_map_kaiomy(void)
75 {
76 	return rc_map_register(&kaiomy_map);
77 }
78 
79 static void __exit exit_rc_map_kaiomy(void)
80 {
81 	rc_map_unregister(&kaiomy_map);
82 }
83 
84 module_init(init_rc_map_kaiomy)
85 module_exit(exit_rc_map_kaiomy)
86 
87 MODULE_LICENSE("GPL");
88 MODULE_AUTHOR("Mauro Carvalho Chehab");
89