vserver 1.9.5.x5
[linux-2.6.git] / drivers / media / common / ir-common.c
1 /*
2  * $Id: ir-common.c,v 1.6 2004/12/10 12:33:39 kraxel Exp $
3  *
4  * some common structs and functions to handle infrared remotes via
5  * input layer ...
6  *
7  * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8  *
9  *  This program is free software; you can redistribute it and/or modify
10  *  it under the terms of the GNU General Public License as published by
11  *  the Free Software Foundation; either version 2 of the License, or
12  *  (at your option) any later version.
13  *
14  *  This program is distributed in the hope that it will be useful,
15  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *  GNU General Public License for more details.
18  *
19  *  You should have received a copy of the GNU General Public License
20  *  along with this program; if not, write to the Free Software
21  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
22  */
23
24 #include <linux/module.h>
25 #include <linux/moduleparam.h>
26
27 #include <media/ir-common.h>
28
29 /* -------------------------------------------------------------------------- */
30
31 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
32 MODULE_LICENSE("GPL");
33
34 static int repeat = 1;
35 module_param(repeat, int, 0444);
36 MODULE_PARM_DESC(repeat,"auto-repeat for IR keys (default: on)");
37
38 static int debug = 0;    /* debug level (0,1,2) */
39 module_param(debug, int, 0644);
40
41 #define dprintk(level, fmt, arg...)     if (debug >= level) \
42         printk(KERN_DEBUG fmt , ## arg)
43
44 /* -------------------------------------------------------------------------- */
45
46 /* generic RC5 keytable                                          */
47 /* see http://users.pandora.be/nenya/electronics/rc5/codes00.htm */
48 IR_KEYTAB_TYPE ir_codes_rc5_tv[IR_KEYTAB_SIZE] = {
49         [ 0x00 ] = KEY_KP0,             // 0
50         [ 0x01 ] = KEY_KP1,             // 1
51         [ 0x02 ] = KEY_KP2,             // 2
52         [ 0x03 ] = KEY_KP3,             // 3
53         [ 0x04 ] = KEY_KP4,             // 4
54         [ 0x05 ] = KEY_KP5,             // 5
55         [ 0x06 ] = KEY_KP6,             // 6
56         [ 0x07 ] = KEY_KP7,             // 7
57         [ 0x08 ] = KEY_KP8,             // 8
58         [ 0x09 ] = KEY_KP9,             // 9
59
60         [ 0x0b ] = KEY_CHANNEL,         // channel / program (japan: 11)
61         [ 0x0c ] = KEY_POWER,           // standby
62         [ 0x0d ] = KEY_MUTE,            // mute / demute
63         [ 0x0f ] = KEY_TV,              // display
64         [ 0x10 ] = KEY_VOLUMEUP,        // volume +
65         [ 0x11 ] = KEY_VOLUMEDOWN,      // volume -
66         [ 0x12 ] = KEY_BRIGHTNESSUP,    // brightness +
67         [ 0x13 ] = KEY_BRIGHTNESSDOWN,  // brightness -
68         [ 0x1e ] = KEY_SEARCH,          // search +
69         [ 0x20 ] = KEY_CHANNELUP,       // channel / program +
70         [ 0x21 ] = KEY_CHANNELDOWN,     // channel / program -
71         [ 0x22 ] = KEY_CHANNEL,         // alt / channel
72         [ 0x23 ] = KEY_LANGUAGE,        // 1st / 2nd language
73         [ 0x26 ] = KEY_SLEEP,           // sleeptimer
74         [ 0x2e ] = KEY_MENU,            // 2nd controls (USA: menu)
75         [ 0x30 ] = KEY_PAUSE,           // pause
76         [ 0x32 ] = KEY_REWIND,          // rewind
77         [ 0x33 ] = KEY_GOTO,            // go to
78         [ 0x35 ] = KEY_PLAY,            // play
79         [ 0x36 ] = KEY_STOP,            // stop
80         [ 0x37 ] = KEY_RECORD,          // recording
81         [ 0x3c ] = KEY_TEXT,            // teletext submode (Japan: 12)
82         [ 0x3d ] = KEY_SUSPEND,         // system standby
83
84 #if 0 /* FIXME */
85         [ 0x0a ] = KEY_RESERVED,        // 1/2/3 digits (japan: 10)
86         [ 0x0e ] = KEY_RESERVED,        // P.P. (personal preference)
87         [ 0x14 ] = KEY_RESERVED,        // colour saturation +
88         [ 0x15 ] = KEY_RESERVED,        // colour saturation -
89         [ 0x16 ] = KEY_RESERVED,        // bass +
90         [ 0x17 ] = KEY_RESERVED,        // bass -
91         [ 0x18 ] = KEY_RESERVED,        // treble +
92         [ 0x19 ] = KEY_RESERVED,        // treble -
93         [ 0x1a ] = KEY_RESERVED,        // balance right
94         [ 0x1b ] = KEY_RESERVED,        // balance left
95         [ 0x1c ] = KEY_RESERVED,        // contrast +
96         [ 0x1d ] = KEY_RESERVED,        // contrast -
97         [ 0x1f ] = KEY_RESERVED,        // tint/hue +
98         [ 0x24 ] = KEY_RESERVED,        // spacial stereo on/off
99         [ 0x25 ] = KEY_RESERVED,        // mono / stereo (USA)
100         [ 0x27 ] = KEY_RESERVED,        // tint / hue -
101         [ 0x28 ] = KEY_RESERVED,        // RF switch/PIP select
102         [ 0x29 ] = KEY_RESERVED,        // vote
103         [ 0x2a ] = KEY_RESERVED,        // timed page/channel clck
104         [ 0x2b ] = KEY_RESERVED,        // increment (USA)
105         [ 0x2c ] = KEY_RESERVED,        // decrement (USA)
106         [ 0x2d ] = KEY_RESERVED,        //
107         [ 0x2f ] = KEY_RESERVED,        // PIP shift
108         [ 0x31 ] = KEY_RESERVED,        // erase
109         [ 0x34 ] = KEY_RESERVED,        // wind
110         [ 0x38 ] = KEY_RESERVED,        // external 1
111         [ 0x39 ] = KEY_RESERVED,        // external 2
112         [ 0x3a ] = KEY_RESERVED,        // PIP display mode
113         [ 0x3b ] = KEY_RESERVED,        // view data mode / advance
114         [ 0x3e ] = KEY_RESERVED,        // crispener on/off
115         [ 0x3f ] = KEY_RESERVED,        // system select
116 #endif
117 };
118 EXPORT_SYMBOL_GPL(ir_codes_rc5_tv);
119
120 /* empty keytable, can be used as placeholder for not-yet created keytables */
121 IR_KEYTAB_TYPE ir_codes_empty[IR_KEYTAB_SIZE] = {
122         [ 42 ] = KEY_COFFEE,
123 };
124 EXPORT_SYMBOL_GPL(ir_codes_empty);
125
126 /* -------------------------------------------------------------------------- */
127
128 static void ir_input_key_event(struct input_dev *dev, struct ir_input_state *ir)
129 {
130         if (KEY_RESERVED == ir->keycode) {
131                 printk(KERN_INFO "%s: unknown key: key=0x%02x raw=0x%02x down=%d\n",
132                        dev->name,ir->ir_key,ir->ir_raw,ir->keypressed);
133                 return;
134         }
135         dprintk(1,"%s: key event code=%d down=%d\n",
136                 dev->name,ir->keycode,ir->keypressed);
137         input_report_key(dev,ir->keycode,ir->keypressed);
138         input_sync(dev);
139 }
140
141 /* -------------------------------------------------------------------------- */
142
143 void ir_input_init(struct input_dev *dev, struct ir_input_state *ir,
144                    int ir_type, IR_KEYTAB_TYPE *ir_codes)
145 {
146         int i;
147
148         ir->ir_type = ir_type;
149         if (ir_codes)
150                 memcpy(ir->ir_codes, ir_codes, sizeof(ir->ir_codes));
151
152         init_input_dev(dev);
153         dev->keycode     = ir->ir_codes;
154         dev->keycodesize = sizeof(IR_KEYTAB_TYPE);
155         dev->keycodemax  = IR_KEYTAB_SIZE;
156         for (i = 0; i < IR_KEYTAB_SIZE; i++)
157                 set_bit(ir->ir_codes[i], dev->keybit);
158         clear_bit(0, dev->keybit);
159
160         set_bit(EV_KEY, dev->evbit);
161         if (repeat)
162                 set_bit(EV_REP, dev->evbit);
163 }
164
165 void ir_input_nokey(struct input_dev *dev, struct ir_input_state *ir)
166 {
167         if (ir->keypressed) {
168                 ir->keypressed = 0;
169                 ir_input_key_event(dev,ir);
170         }
171 }
172
173 void ir_input_keydown(struct input_dev *dev, struct ir_input_state *ir,
174                       u32 ir_key, u32 ir_raw)
175 {
176         u32 keycode = IR_KEYCODE(ir->ir_codes, ir_key);
177
178         if (ir->keypressed && ir->keycode != keycode) {
179                 ir->keypressed = 0;
180                 ir_input_key_event(dev,ir);
181         }
182         if (!ir->keypressed) {
183                 ir->ir_key  = ir_key;
184                 ir->ir_raw  = ir_raw;
185                 ir->keycode = keycode;
186                 ir->keypressed = 1;
187                 ir_input_key_event(dev,ir);
188         }
189 #if 0
190         /* maybe do something like this ??? */
191         input_event(a, EV_IR, ir->ir_type, ir->ir_raw);
192 #endif
193 }
194
195 u32 ir_extract_bits(u32 data, u32 mask)
196 {
197         int mbit, vbit;
198         u32 value;
199
200         value = 0;
201         vbit  = 0;
202         for (mbit = 0; mbit < 32; mbit++) {
203                 if (!(mask & ((u32)1 << mbit)))
204                         continue;
205                 if (data & ((u32)1 << mbit))
206                         value |= (1 << vbit);
207                 vbit++;
208         }
209         return value;
210 }
211
212 EXPORT_SYMBOL_GPL(ir_input_init);
213 EXPORT_SYMBOL_GPL(ir_input_nokey);
214 EXPORT_SYMBOL_GPL(ir_input_keydown);
215 EXPORT_SYMBOL_GPL(ir_extract_bits);
216
217 /*
218  * Local variables:
219  * c-basic-offset: 8
220  * End:
221  */