• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/drivers/media/IR/keymaps/
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 <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/* Kaiomy TVnPC U2
16   Mauro Carvalho Chehab <mchehab@infradead.org>
17 */
18
19static struct ir_scancode 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
64static struct rc_keymap kaiomy_map = {
65	.map = {
66		.scan    = kaiomy,
67		.size    = ARRAY_SIZE(kaiomy),
68		.ir_type = IR_TYPE_UNKNOWN,	/* Legacy IR type */
69		.name    = RC_MAP_KAIOMY,
70	}
71};
72
73static int __init init_rc_map_kaiomy(void)
74{
75	return ir_register_map(&kaiomy_map);
76}
77
78static void __exit exit_rc_map_kaiomy(void)
79{
80	ir_unregister_map(&kaiomy_map);
81}
82
83module_init(init_rc_map_kaiomy)
84module_exit(exit_rc_map_kaiomy)
85
86MODULE_LICENSE("GPL");
87MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
88