Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
rc-avermedia-cardbus.c
Go to the documentation of this file.
1 /* avermedia-cardbus.h - Keytable for avermedia_cardbus 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 #include <linux/module.h>
15 
16 /* Oldrich Jedlicka <[email protected]> */
17 
18 static struct rc_map_table avermedia_cardbus[] = {
19  { 0x00, KEY_POWER },
20  { 0x01, KEY_TUNER }, /* TV/FM */
21  { 0x03, KEY_TEXT }, /* Teletext */
22  { 0x04, KEY_EPG },
23  { 0x05, KEY_1 },
24  { 0x06, KEY_2 },
25  { 0x07, KEY_3 },
26  { 0x08, KEY_AUDIO },
27  { 0x09, KEY_4 },
28  { 0x0a, KEY_5 },
29  { 0x0b, KEY_6 },
30  { 0x0c, KEY_ZOOM }, /* Full screen */
31  { 0x0d, KEY_7 },
32  { 0x0e, KEY_8 },
33  { 0x0f, KEY_9 },
34  { 0x10, KEY_PAGEUP }, /* 16-CH PREV */
35  { 0x11, KEY_0 },
36  { 0x12, KEY_INFO },
37  { 0x13, KEY_AGAIN }, /* CH RTN - channel return */
38  { 0x14, KEY_MUTE },
39  { 0x15, KEY_EDIT }, /* Autoscan */
40  { 0x17, KEY_SAVE }, /* Screenshot */
41  { 0x18, KEY_PLAYPAUSE },
42  { 0x19, KEY_RECORD },
43  { 0x1a, KEY_PLAY },
44  { 0x1b, KEY_STOP },
45  { 0x1c, KEY_FASTFORWARD },
46  { 0x1d, KEY_REWIND },
47  { 0x1e, KEY_VOLUMEDOWN },
48  { 0x1f, KEY_VOLUMEUP },
49  { 0x22, KEY_SLEEP }, /* Sleep */
50  { 0x23, KEY_ZOOM }, /* Aspect */
51  { 0x26, KEY_SCREEN }, /* Pos */
52  { 0x27, KEY_ANGLE }, /* Size */
53  { 0x28, KEY_SELECT }, /* Select */
54  { 0x29, KEY_BLUE }, /* Blue/Picture */
55  { 0x2a, KEY_BACKSPACE }, /* Back */
56  { 0x2b, KEY_VIDEO }, /* PIP (Picture-in-picture) */
57  { 0x2c, KEY_DOWN },
58  { 0x2e, KEY_DOT },
59  { 0x2f, KEY_TV }, /* Live TV */
60  { 0x32, KEY_LEFT },
61  { 0x33, KEY_CLEAR }, /* Clear */
62  { 0x35, KEY_RED }, /* Red/TV */
63  { 0x36, KEY_UP },
64  { 0x37, KEY_HOME }, /* Home */
65  { 0x39, KEY_GREEN }, /* Green/Video */
66  { 0x3d, KEY_YELLOW }, /* Yellow/Music */
67  { 0x3e, KEY_OK }, /* Ok */
68  { 0x3f, KEY_RIGHT },
69  { 0x40, KEY_NEXT }, /* Next */
70  { 0x41, KEY_PREVIOUS }, /* Previous */
71  { 0x42, KEY_CHANNELDOWN }, /* Channel down */
72  { 0x43, KEY_CHANNELUP }, /* Channel up */
73 };
74 
75 static struct rc_map_list avermedia_cardbus_map = {
76  .map = {
77  .scan = avermedia_cardbus,
78  .size = ARRAY_SIZE(avermedia_cardbus),
79  .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */
81  }
82 };
83 
84 static int __init init_rc_map_avermedia_cardbus(void)
85 {
86  return rc_map_register(&avermedia_cardbus_map);
87 }
88 
89 static void __exit exit_rc_map_avermedia_cardbus(void)
90 {
91  rc_map_unregister(&avermedia_cardbus_map);
92 }
93 
94 module_init(init_rc_map_avermedia_cardbus)
95 module_exit(exit_rc_map_avermedia_cardbus)
96 
97 MODULE_LICENSE("GPL");
98 MODULE_AUTHOR("Mauro Carvalho Chehab <[email protected]>");