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