added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / media / video / cx88 / cx88-input.c
blob5b107faba1cb57288dbf36a108d7dce92d839841
1 /*
3 * Device driver for GPIO attached remote control interfaces
4 * on Conexant 2388x based TV/DVB cards.
6 * Copyright (c) 2003 Pavel Machek
7 * Copyright (c) 2004 Gerd Knorr
8 * Copyright (c) 2004, 2005 Chris Pascoe
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/init.h>
26 #include <linux/delay.h>
27 #include <linux/input.h>
28 #include <linux/pci.h>
29 #include <linux/module.h>
31 #include "cx88.h"
32 #include <media/ir-common.h>
34 /* ---------------------------------------------------------------------- */
36 struct cx88_IR {
37 struct cx88_core *core;
38 struct input_dev *input;
39 struct ir_input_state ir;
40 char name[32];
41 char phys[32];
43 /* sample from gpio pin 16 */
44 u32 sampling;
45 u32 samples[16];
46 int scount;
47 unsigned long release;
49 /* poll external decoder */
50 int polling;
51 struct delayed_work work;
52 u32 gpio_addr;
53 u32 last_gpio;
54 u32 mask_keycode;
55 u32 mask_keydown;
56 u32 mask_keyup;
59 static int ir_debug;
60 module_param(ir_debug, int, 0644); /* debug level [IR] */
61 MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
63 #define ir_dprintk(fmt, arg...) if (ir_debug) \
64 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
66 /* ---------------------------------------------------------------------- */
68 static void cx88_ir_handle_key(struct cx88_IR *ir)
70 struct cx88_core *core = ir->core;
71 u32 gpio, data, auxgpio;
73 /* read gpio value */
74 gpio = cx_read(ir->gpio_addr);
75 switch (core->boardnr) {
76 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
77 /* This board apparently uses a combination of 2 GPIO
78 to represent the keys. Additionally, the second GPIO
79 can be used for parity.
81 Example:
83 for key "5"
84 gpio = 0x758, auxgpio = 0xe5 or 0xf5
85 for key "Power"
86 gpio = 0x758, auxgpio = 0xed or 0xfd
89 auxgpio = cx_read(MO_GP1_IO);
90 /* Take out the parity part */
91 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
92 break;
93 case CX88_BOARD_WINFAST_DTV1000:
94 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
95 auxgpio = gpio;
96 break;
97 default:
98 auxgpio = gpio;
100 if (ir->polling) {
101 if (ir->last_gpio == auxgpio)
102 return;
103 ir->last_gpio = auxgpio;
106 /* extract data */
107 data = ir_extract_bits(gpio, ir->mask_keycode);
108 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
109 gpio, data,
110 ir->polling ? "poll" : "irq",
111 (gpio & ir->mask_keydown) ? " down" : "",
112 (gpio & ir->mask_keyup) ? " up" : "");
114 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
115 u32 gpio_key = cx_read(MO_GP0_IO);
117 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
119 ir_input_keydown(ir->input, &ir->ir, data, data);
120 ir_input_nokey(ir->input, &ir->ir);
122 } else if (ir->mask_keydown) {
123 /* bit set on keydown */
124 if (gpio & ir->mask_keydown) {
125 ir_input_keydown(ir->input, &ir->ir, data, data);
126 } else {
127 ir_input_nokey(ir->input, &ir->ir);
130 } else if (ir->mask_keyup) {
131 /* bit cleared on keydown */
132 if (0 == (gpio & ir->mask_keyup)) {
133 ir_input_keydown(ir->input, &ir->ir, data, data);
134 } else {
135 ir_input_nokey(ir->input, &ir->ir);
138 } else {
139 /* can't distinguish keydown/up :-/ */
140 ir_input_keydown(ir->input, &ir->ir, data, data);
141 ir_input_nokey(ir->input, &ir->ir);
145 static void cx88_ir_work(struct work_struct *work)
147 struct cx88_IR *ir = container_of(work, struct cx88_IR, work.work);
149 cx88_ir_handle_key(ir);
150 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
153 void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
155 if (ir->polling) {
156 INIT_DELAYED_WORK(&ir->work, cx88_ir_work);
157 schedule_delayed_work(&ir->work, 0);
159 if (ir->sampling) {
160 core->pci_irqmask |= PCI_INT_IR_SMPINT;
161 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
162 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
166 void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
168 if (ir->sampling) {
169 cx_write(MO_DDSCFG_IO, 0x0);
170 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
173 if (ir->polling)
174 cancel_delayed_work_sync(&ir->work);
177 /* ---------------------------------------------------------------------- */
179 int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
181 struct cx88_IR *ir;
182 struct input_dev *input_dev;
183 IR_KEYTAB_TYPE *ir_codes = NULL;
184 int ir_type = IR_TYPE_OTHER;
185 int err = -ENOMEM;
187 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
188 input_dev = input_allocate_device();
189 if (!ir || !input_dev)
190 goto err_out_free;
192 ir->input = input_dev;
194 /* detect & configure */
195 switch (core->boardnr) {
196 case CX88_BOARD_DNTV_LIVE_DVB_T:
197 case CX88_BOARD_KWORLD_DVB_T:
198 case CX88_BOARD_KWORLD_DVB_T_CX22702:
199 ir_codes = ir_codes_dntv_live_dvb_t;
200 ir->gpio_addr = MO_GP1_IO;
201 ir->mask_keycode = 0x1f;
202 ir->mask_keyup = 0x60;
203 ir->polling = 50; /* ms */
204 break;
205 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
206 ir_codes = ir_codes_cinergy_1400;
207 ir_type = IR_TYPE_PD;
208 ir->sampling = 0xeb04; /* address */
209 break;
210 case CX88_BOARD_HAUPPAUGE:
211 case CX88_BOARD_HAUPPAUGE_DVB_T1:
212 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
213 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
214 case CX88_BOARD_HAUPPAUGE_HVR1100:
215 case CX88_BOARD_HAUPPAUGE_HVR3000:
216 case CX88_BOARD_HAUPPAUGE_HVR4000:
217 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
218 ir_codes = ir_codes_hauppauge_new;
219 ir_type = IR_TYPE_RC5;
220 ir->sampling = 1;
221 break;
222 case CX88_BOARD_WINFAST_DTV2000H:
223 ir_codes = ir_codes_winfast;
224 ir->gpio_addr = MO_GP0_IO;
225 ir->mask_keycode = 0x8f8;
226 ir->mask_keyup = 0x100;
227 ir->polling = 50; /* ms */
228 break;
229 case CX88_BOARD_WINFAST2000XP_EXPERT:
230 case CX88_BOARD_WINFAST_DTV1000:
231 ir_codes = ir_codes_winfast;
232 ir->gpio_addr = MO_GP0_IO;
233 ir->mask_keycode = 0x8f8;
234 ir->mask_keyup = 0x100;
235 ir->polling = 1; /* ms */
236 break;
237 case CX88_BOARD_IODATA_GVBCTV7E:
238 ir_codes = ir_codes_iodata_bctv7e;
239 ir->gpio_addr = MO_GP0_IO;
240 ir->mask_keycode = 0xfd;
241 ir->mask_keydown = 0x02;
242 ir->polling = 5; /* ms */
243 break;
244 case CX88_BOARD_PROLINK_PLAYTVPVR:
245 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
246 ir_codes = ir_codes_pixelview;
247 ir->gpio_addr = MO_GP1_IO;
248 ir->mask_keycode = 0x1f;
249 ir->mask_keyup = 0x80;
250 ir->polling = 1; /* ms */
251 break;
252 case CX88_BOARD_PROLINK_PV_8000GT:
253 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
254 ir_codes = ir_codes_pixelview_new;
255 ir->gpio_addr = MO_GP1_IO;
256 ir->mask_keycode = 0x3f;
257 ir->mask_keyup = 0x80;
258 ir->polling = 1; /* ms */
259 break;
260 case CX88_BOARD_KWORLD_LTV883:
261 ir_codes = ir_codes_pixelview;
262 ir->gpio_addr = MO_GP1_IO;
263 ir->mask_keycode = 0x1f;
264 ir->mask_keyup = 0x60;
265 ir->polling = 1; /* ms */
266 break;
267 case CX88_BOARD_ADSTECH_DVB_T_PCI:
268 ir_codes = ir_codes_adstech_dvb_t_pci;
269 ir->gpio_addr = MO_GP1_IO;
270 ir->mask_keycode = 0xbf;
271 ir->mask_keyup = 0x40;
272 ir->polling = 50; /* ms */
273 break;
274 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
275 ir_codes = ir_codes_msi_tvanywhere;
276 ir->gpio_addr = MO_GP1_IO;
277 ir->mask_keycode = 0x1f;
278 ir->mask_keyup = 0x40;
279 ir->polling = 1; /* ms */
280 break;
281 case CX88_BOARD_AVERTV_303:
282 case CX88_BOARD_AVERTV_STUDIO_303:
283 ir_codes = ir_codes_avertv_303;
284 ir->gpio_addr = MO_GP2_IO;
285 ir->mask_keycode = 0xfb;
286 ir->mask_keydown = 0x02;
287 ir->polling = 50; /* ms */
288 break;
289 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
290 ir_codes = ir_codes_dntv_live_dvbt_pro;
291 ir_type = IR_TYPE_PD;
292 ir->sampling = 0xff00; /* address */
293 break;
294 case CX88_BOARD_NORWOOD_MICRO:
295 ir_codes = ir_codes_norwood;
296 ir->gpio_addr = MO_GP1_IO;
297 ir->mask_keycode = 0x0e;
298 ir->mask_keyup = 0x80;
299 ir->polling = 50; /* ms */
300 break;
301 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
302 ir_codes = ir_codes_npgtech;
303 ir->gpio_addr = MO_GP0_IO;
304 ir->mask_keycode = 0xfa;
305 ir->polling = 50; /* ms */
306 break;
307 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
308 ir_codes = ir_codes_pinnacle_pctv_hd;
309 ir_type = IR_TYPE_RC5;
310 ir->sampling = 1;
311 break;
312 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
313 ir_codes = ir_codes_powercolor_real_angel;
314 ir->gpio_addr = MO_GP2_IO;
315 ir->mask_keycode = 0x7e;
316 ir->polling = 100; /* ms */
317 break;
320 if (NULL == ir_codes) {
321 err = -ENODEV;
322 goto err_out_free;
325 /* init input device */
326 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
327 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
329 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
330 input_dev->name = ir->name;
331 input_dev->phys = ir->phys;
332 input_dev->id.bustype = BUS_PCI;
333 input_dev->id.version = 1;
334 if (pci->subsystem_vendor) {
335 input_dev->id.vendor = pci->subsystem_vendor;
336 input_dev->id.product = pci->subsystem_device;
337 } else {
338 input_dev->id.vendor = pci->vendor;
339 input_dev->id.product = pci->device;
341 input_dev->dev.parent = &pci->dev;
342 /* record handles to ourself */
343 ir->core = core;
344 core->ir = ir;
346 cx88_ir_start(core, ir);
348 /* all done */
349 err = input_register_device(ir->input);
350 if (err)
351 goto err_out_stop;
353 return 0;
355 err_out_stop:
356 cx88_ir_stop(core, ir);
357 core->ir = NULL;
358 err_out_free:
359 input_free_device(input_dev);
360 kfree(ir);
361 return err;
364 int cx88_ir_fini(struct cx88_core *core)
366 struct cx88_IR *ir = core->ir;
368 /* skip detach on non attached boards */
369 if (NULL == ir)
370 return 0;
372 cx88_ir_stop(core, ir);
373 input_unregister_device(ir->input);
374 kfree(ir);
376 /* done */
377 core->ir = NULL;
378 return 0;
381 /* ---------------------------------------------------------------------- */
383 void cx88_ir_irq(struct cx88_core *core)
385 struct cx88_IR *ir = core->ir;
386 u32 samples, ircode;
387 int i, start, range, toggle, dev, code;
389 if (NULL == ir)
390 return;
391 if (!ir->sampling)
392 return;
394 samples = cx_read(MO_SAMPLE_IO);
395 if (0 != samples && 0xffffffff != samples) {
396 /* record sample data */
397 if (ir->scount < ARRAY_SIZE(ir->samples))
398 ir->samples[ir->scount++] = samples;
399 return;
401 if (!ir->scount) {
402 /* nothing to sample */
403 if (ir->ir.keypressed && time_after(jiffies, ir->release))
404 ir_input_nokey(ir->input, &ir->ir);
405 return;
408 /* have a complete sample */
409 if (ir->scount < ARRAY_SIZE(ir->samples))
410 ir->samples[ir->scount++] = samples;
411 for (i = 0; i < ir->scount; i++)
412 ir->samples[i] = ~ir->samples[i];
413 if (ir_debug)
414 ir_dump_samples(ir->samples, ir->scount);
416 /* decode it */
417 switch (core->boardnr) {
418 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
419 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
420 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
422 if (ircode == 0xffffffff) { /* decoding error */
423 ir_dprintk("pulse distance decoding error\n");
424 break;
427 ir_dprintk("pulse distance decoded: %x\n", ircode);
429 if (ircode == 0) { /* key still pressed */
430 ir_dprintk("pulse distance decoded repeat code\n");
431 ir->release = jiffies + msecs_to_jiffies(120);
432 break;
435 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
436 ir_dprintk("pulse distance decoded wrong address\n");
437 break;
440 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
441 ir_dprintk("pulse distance decoded wrong check sum\n");
442 break;
445 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
447 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
448 ir->release = jiffies + msecs_to_jiffies(120);
449 break;
450 case CX88_BOARD_HAUPPAUGE:
451 case CX88_BOARD_HAUPPAUGE_DVB_T1:
452 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
453 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
454 case CX88_BOARD_HAUPPAUGE_HVR1100:
455 case CX88_BOARD_HAUPPAUGE_HVR3000:
456 case CX88_BOARD_HAUPPAUGE_HVR4000:
457 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
458 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
459 ir_dprintk("biphase decoded: %x\n", ircode);
461 * RC5 has an extension bit which adds a new range
462 * of available codes, this is detected here. Also
463 * hauppauge remotes (black/silver) always use
464 * specific device ids. If we do not filter the
465 * device ids then messages destined for devices
466 * such as TVs (id=0) will get through to the
467 * device causing mis-fired events.
469 /* split rc5 data block ... */
470 start = (ircode & 0x2000) >> 13;
471 range = (ircode & 0x1000) >> 12;
472 toggle= (ircode & 0x0800) >> 11;
473 dev = (ircode & 0x07c0) >> 6;
474 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
475 if( start != 1)
476 /* no key pressed */
477 break;
478 if ( dev != 0x1e && dev != 0x1f )
479 /* not a hauppauge remote */
480 break;
481 ir_input_keydown(ir->input, &ir->ir, code, ircode);
482 ir->release = jiffies + msecs_to_jiffies(120);
483 break;
484 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
485 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
486 ir_dprintk("biphase decoded: %x\n", ircode);
487 if ((ircode & 0xfffff000) != 0x3000)
488 break;
489 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
490 ir->release = jiffies + msecs_to_jiffies(120);
491 break;
494 ir->scount = 0;
495 return;
498 /* ---------------------------------------------------------------------- */
500 MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
501 MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
502 MODULE_LICENSE("GPL");
504 * Local variables:
505 * c-basic-offset: 8
506 * End: