V4L/DVB (12439): cx88: add support for WinFast DTV2000H rev. J
[deliverable/linux.git] / drivers / media / video / cx88 / cx88-input.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * Device driver for GPIO attached remote control interfaces
4 * on Conexant 2388x based TV/DVB cards.
5 *
6 * Copyright (c) 2003 Pavel Machek
7 * Copyright (c) 2004 Gerd Knorr
fc40b261 8 * Copyright (c) 2004, 2005 Chris Pascoe
1da177e4
LT
9 *
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.
14 *
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.
19 *
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
23 */
24
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>
1da177e4 30
1da177e4 31#include "cx88.h"
d21838dd 32#include <media/ir-common.h>
1da177e4
LT
33
34/* ---------------------------------------------------------------------- */
35
1da177e4 36struct cx88_IR {
41ef7c1e 37 struct cx88_core *core;
b7df3910 38 struct input_dev *input;
41ef7c1e
MCC
39 struct ir_input_state ir;
40 char name[32];
41 char phys[32];
1da177e4
LT
42
43 /* sample from gpio pin 16 */
fc40b261 44 u32 sampling;
41ef7c1e
MCC
45 u32 samples[16];
46 int scount;
47 unsigned long release;
1da177e4
LT
48
49 /* poll external decoder */
41ef7c1e 50 int polling;
569b7ec7 51 struct delayed_work work;
41ef7c1e
MCC
52 u32 gpio_addr;
53 u32 last_gpio;
54 u32 mask_keycode;
55 u32 mask_keydown;
56 u32 mask_keyup;
1da177e4
LT
57};
58
ff699e6b 59static int ir_debug;
41ef7c1e 60module_param(ir_debug, int, 0644); /* debug level [IR] */
1da177e4
LT
61MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
62
63#define ir_dprintk(fmt, arg...) if (ir_debug) \
e52e98a7 64 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
1da177e4
LT
65
66/* ---------------------------------------------------------------------- */
67
68static void cx88_ir_handle_key(struct cx88_IR *ir)
69{
70 struct cx88_core *core = ir->core;
680543c5 71 u32 gpio, data, auxgpio;
1da177e4
LT
72
73 /* read gpio value */
74 gpio = cx_read(ir->gpio_addr);
6a59d64c 75 switch (core->boardnr) {
829ea964 76 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
680543c5
RC
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.
80
81 Example:
82
83 for key "5"
84 gpio = 0x758, auxgpio = 0xe5 or 0xf5
85 for key "Power"
86 gpio = 0x758, auxgpio = 0xed or 0xfd
87 */
88
89 auxgpio = cx_read(MO_GP1_IO);
90 /* Take out the parity part */
a62c61d3 91 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
829ea964
MK
92 break;
93 case CX88_BOARD_WINFAST_DTV1000:
3047a176 94 case CX88_BOARD_WINFAST_DTV1800H:
3e9a4897 95 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
e7d11ecb
EP
96 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
97 auxgpio = gpio;
829ea964
MK
98 break;
99 default:
680543c5 100 auxgpio = gpio;
829ea964 101 }
1da177e4 102 if (ir->polling) {
680543c5 103 if (ir->last_gpio == auxgpio)
1da177e4 104 return;
680543c5 105 ir->last_gpio = auxgpio;
1da177e4
LT
106 }
107
108 /* extract data */
109 data = ir_extract_bits(gpio, ir->mask_keycode);
110 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
41ef7c1e
MCC
111 gpio, data,
112 ir->polling ? "poll" : "irq",
113 (gpio & ir->mask_keydown) ? " down" : "",
114 (gpio & ir->mask_keyup) ? " up" : "");
1da177e4 115
6a59d64c 116 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
d1009bd7
PN
117 u32 gpio_key = cx_read(MO_GP0_IO);
118
119 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
120
121 ir_input_keydown(ir->input, &ir->ir, data, data);
122 ir_input_nokey(ir->input, &ir->ir);
123
124 } else if (ir->mask_keydown) {
1da177e4
LT
125 /* bit set on keydown */
126 if (gpio & ir->mask_keydown) {
b7df3910 127 ir_input_keydown(ir->input, &ir->ir, data, data);
1da177e4 128 } else {
b7df3910 129 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
130 }
131
132 } else if (ir->mask_keyup) {
133 /* bit cleared on keydown */
134 if (0 == (gpio & ir->mask_keyup)) {
b7df3910 135 ir_input_keydown(ir->input, &ir->ir, data, data);
1da177e4 136 } else {
b7df3910 137 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
138 }
139
140 } else {
141 /* can't distinguish keydown/up :-/ */
b7df3910
DT
142 ir_input_keydown(ir->input, &ir->ir, data, data);
143 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
144 }
145}
146
c4028958 147static void cx88_ir_work(struct work_struct *work)
1da177e4 148{
569b7ec7 149 struct cx88_IR *ir = container_of(work, struct cx88_IR, work.work);
1da177e4
LT
150
151 cx88_ir_handle_key(ir);
569b7ec7 152 schedule_delayed_work(&ir->work, msecs_to_jiffies(ir->polling));
1da177e4
LT
153}
154
13595a51 155void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
b07b4783
DT
156{
157 if (ir->polling) {
569b7ec7
JD
158 INIT_DELAYED_WORK(&ir->work, cx88_ir_work);
159 schedule_delayed_work(&ir->work, 0);
b07b4783
DT
160 }
161 if (ir->sampling) {
8ddac9ee 162 core->pci_irqmask |= PCI_INT_IR_SMPINT;
b07b4783
DT
163 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
164 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
165 }
166}
167
13595a51 168void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
b07b4783
DT
169{
170 if (ir->sampling) {
171 cx_write(MO_DDSCFG_IO, 0x0);
8ddac9ee 172 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
b07b4783
DT
173 }
174
569b7ec7
JD
175 if (ir->polling)
176 cancel_delayed_work_sync(&ir->work);
b07b4783
DT
177}
178
1da177e4
LT
179/* ---------------------------------------------------------------------- */
180
181int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
182{
183 struct cx88_IR *ir;
b7df3910 184 struct input_dev *input_dev;
1da177e4
LT
185 IR_KEYTAB_TYPE *ir_codes = NULL;
186 int ir_type = IR_TYPE_OTHER;
b07b4783 187 int err = -ENOMEM;
1da177e4 188
b7df3910
DT
189 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
190 input_dev = input_allocate_device();
b07b4783
DT
191 if (!ir || !input_dev)
192 goto err_out_free;
b7df3910
DT
193
194 ir->input = input_dev;
1da177e4
LT
195
196 /* detect & configure */
6a59d64c 197 switch (core->boardnr) {
1da177e4 198 case CX88_BOARD_DNTV_LIVE_DVB_T:
b45009b0 199 case CX88_BOARD_KWORLD_DVB_T:
28ecc449 200 case CX88_BOARD_KWORLD_DVB_T_CX22702:
41ef7c1e
MCC
201 ir_codes = ir_codes_dntv_live_dvb_t;
202 ir->gpio_addr = MO_GP1_IO;
1da177e4 203 ir->mask_keycode = 0x1f;
41ef7c1e
MCC
204 ir->mask_keyup = 0x60;
205 ir->polling = 50; /* ms */
1da177e4 206 break;
e52e98a7
MCC
207 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
208 ir_codes = ir_codes_cinergy_1400;
209 ir_type = IR_TYPE_PD;
fc40b261 210 ir->sampling = 0xeb04; /* address */
e52e98a7 211 break;
1da177e4
LT
212 case CX88_BOARD_HAUPPAUGE:
213 case CX88_BOARD_HAUPPAUGE_DVB_T1:
fb56cb65
ST
214 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
215 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
611900c1 216 case CX88_BOARD_HAUPPAUGE_HVR1100:
76dc82ab 217 case CX88_BOARD_HAUPPAUGE_HVR3000:
5bd1b663
ST
218 case CX88_BOARD_HAUPPAUGE_HVR4000:
219 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
f1735bb2
EB
220 case CX88_BOARD_PCHDTV_HD3000:
221 case CX88_BOARD_PCHDTV_HD5500:
501d8cd4 222 case CX88_BOARD_HAUPPAUGE_IRONLY:
41ef7c1e
MCC
223 ir_codes = ir_codes_hauppauge_new;
224 ir_type = IR_TYPE_RC5;
225 ir->sampling = 1;
1da177e4 226 break;
2de873e6 227 case CX88_BOARD_WINFAST_DTV2000H:
4d14c833 228 case CX88_BOARD_WINFAST_DTV2000H_J:
3047a176 229 case CX88_BOARD_WINFAST_DTV1800H:
41ef7c1e
MCC
230 ir_codes = ir_codes_winfast;
231 ir->gpio_addr = MO_GP0_IO;
1da177e4 232 ir->mask_keycode = 0x8f8;
41ef7c1e 233 ir->mask_keyup = 0x100;
2de873e6 234 ir->polling = 50; /* ms */
1da177e4 235 break;
ff97d93d 236 case CX88_BOARD_WINFAST2000XP_EXPERT:
e7d11ecb 237 case CX88_BOARD_WINFAST_DTV1000:
3e9a4897 238 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
ff97d93d
HP
239 ir_codes = ir_codes_winfast;
240 ir->gpio_addr = MO_GP0_IO;
241 ir->mask_keycode = 0x8f8;
242 ir->mask_keyup = 0x100;
243 ir->polling = 1; /* ms */
244 break;
1da177e4 245 case CX88_BOARD_IODATA_GVBCTV7E:
41ef7c1e
MCC
246 ir_codes = ir_codes_iodata_bctv7e;
247 ir->gpio_addr = MO_GP0_IO;
1da177e4
LT
248 ir->mask_keycode = 0xfd;
249 ir->mask_keydown = 0x02;
41ef7c1e 250 ir->polling = 5; /* ms */
1da177e4 251 break;
ff97d93d 252 case CX88_BOARD_PROLINK_PLAYTVPVR:
239df2e2 253 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
41ef7c1e
MCC
254 ir_codes = ir_codes_pixelview;
255 ir->gpio_addr = MO_GP1_IO;
239df2e2 256 ir->mask_keycode = 0x1f;
41ef7c1e
MCC
257 ir->mask_keyup = 0x80;
258 ir->polling = 1; /* ms */
239df2e2 259 break;
7f0dd179 260 case CX88_BOARD_PROLINK_PV_8000GT:
a31d2bb7 261 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
7f0dd179
MCC
262 ir_codes = ir_codes_pixelview_new;
263 ir->gpio_addr = MO_GP1_IO;
264 ir->mask_keycode = 0x3f;
265 ir->mask_keyup = 0x80;
266 ir->polling = 1; /* ms */
267 break;
b639f9d2
NS
268 case CX88_BOARD_KWORLD_LTV883:
269 ir_codes = ir_codes_pixelview;
270 ir->gpio_addr = MO_GP1_IO;
271 ir->mask_keycode = 0x1f;
272 ir->mask_keyup = 0x60;
273 ir->polling = 1; /* ms */
274 break;
a82decf6 275 case CX88_BOARD_ADSTECH_DVB_T_PCI:
41ef7c1e
MCC
276 ir_codes = ir_codes_adstech_dvb_t_pci;
277 ir->gpio_addr = MO_GP1_IO;
a82decf6 278 ir->mask_keycode = 0xbf;
41ef7c1e
MCC
279 ir->mask_keyup = 0x40;
280 ir->polling = 50; /* ms */
281 break;
282 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
283 ir_codes = ir_codes_msi_tvanywhere;
284 ir->gpio_addr = MO_GP1_IO;
285 ir->mask_keycode = 0x1f;
286 ir->mask_keyup = 0x40;
287 ir->polling = 1; /* ms */
a82decf6 288 break;
899ad11b 289 case CX88_BOARD_AVERTV_303:
565f4949 290 case CX88_BOARD_AVERTV_STUDIO_303:
899ad11b
GG
291 ir_codes = ir_codes_avertv_303;
292 ir->gpio_addr = MO_GP2_IO;
293 ir->mask_keycode = 0xfb;
294 ir->mask_keydown = 0x02;
295 ir->polling = 50; /* ms */
296 break;
fc40b261
CP
297 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
298 ir_codes = ir_codes_dntv_live_dvbt_pro;
299 ir_type = IR_TYPE_PD;
300 ir->sampling = 0xff00; /* address */
301 break;
d1009bd7
PN
302 case CX88_BOARD_NORWOOD_MICRO:
303 ir_codes = ir_codes_norwood;
304 ir->gpio_addr = MO_GP1_IO;
305 ir->mask_keycode = 0x0e;
306 ir->mask_keyup = 0x80;
307 ir->polling = 50; /* ms */
308 break;
be4f4519 309 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
680543c5
RC
310 ir_codes = ir_codes_npgtech;
311 ir->gpio_addr = MO_GP0_IO;
312 ir->mask_keycode = 0xfa;
313 ir->polling = 50; /* ms */
314 break;
9121106a
ST
315 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
316 ir_codes = ir_codes_pinnacle_pctv_hd;
317 ir_type = IR_TYPE_RC5;
318 ir->sampling = 1;
319 break;
ba928034
DF
320 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
321 ir_codes = ir_codes_powercolor_real_angel;
322 ir->gpio_addr = MO_GP2_IO;
323 ir->mask_keycode = 0x7e;
324 ir->polling = 100; /* ms */
325 break;
1da177e4 326 }
b45009b0 327
1da177e4 328 if (NULL == ir_codes) {
b07b4783
DT
329 err = -ENODEV;
330 goto err_out_free;
1da177e4
LT
331 }
332
333 /* init input device */
6a59d64c 334 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
41ef7c1e 335 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
1da177e4 336
b7df3910
DT
337 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
338 input_dev->name = ir->name;
339 input_dev->phys = ir->phys;
340 input_dev->id.bustype = BUS_PCI;
341 input_dev->id.version = 1;
1da177e4 342 if (pci->subsystem_vendor) {
b7df3910
DT
343 input_dev->id.vendor = pci->subsystem_vendor;
344 input_dev->id.product = pci->subsystem_device;
1da177e4 345 } else {
b7df3910
DT
346 input_dev->id.vendor = pci->vendor;
347 input_dev->id.product = pci->device;
1da177e4 348 }
2c8a3a33 349 input_dev->dev.parent = &pci->dev;
1da177e4
LT
350 /* record handles to ourself */
351 ir->core = core;
352 core->ir = ir;
353
b07b4783 354 cx88_ir_start(core, ir);
1da177e4
LT
355
356 /* all done */
b07b4783
DT
357 err = input_register_device(ir->input);
358 if (err)
359 goto err_out_stop;
1da177e4
LT
360
361 return 0;
b07b4783
DT
362
363 err_out_stop:
364 cx88_ir_stop(core, ir);
365 core->ir = NULL;
366 err_out_free:
367 input_free_device(input_dev);
368 kfree(ir);
369 return err;
1da177e4
LT
370}
371
372int cx88_ir_fini(struct cx88_core *core)
373{
374 struct cx88_IR *ir = core->ir;
375
376 /* skip detach on non attached boards */
377 if (NULL == ir)
378 return 0;
379
b07b4783 380 cx88_ir_stop(core, ir);
b7df3910 381 input_unregister_device(ir->input);
1da177e4
LT
382 kfree(ir);
383
384 /* done */
385 core->ir = NULL;
386 return 0;
387}
388
389/* ---------------------------------------------------------------------- */
390
391void cx88_ir_irq(struct cx88_core *core)
392{
393 struct cx88_IR *ir = core->ir;
e52e98a7 394 u32 samples, ircode;
34c08029 395 int i, start, range, toggle, dev, code;
1da177e4
LT
396
397 if (NULL == ir)
398 return;
399 if (!ir->sampling)
400 return;
401
402 samples = cx_read(MO_SAMPLE_IO);
41ef7c1e 403 if (0 != samples && 0xffffffff != samples) {
1da177e4
LT
404 /* record sample data */
405 if (ir->scount < ARRAY_SIZE(ir->samples))
406 ir->samples[ir->scount++] = samples;
407 return;
408 }
409 if (!ir->scount) {
410 /* nothing to sample */
41ef7c1e 411 if (ir->ir.keypressed && time_after(jiffies, ir->release))
b7df3910 412 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
413 return;
414 }
415
416 /* have a complete sample */
417 if (ir->scount < ARRAY_SIZE(ir->samples))
418 ir->samples[ir->scount++] = samples;
419 for (i = 0; i < ir->scount; i++)
420 ir->samples[i] = ~ir->samples[i];
421 if (ir_debug)
41ef7c1e 422 ir_dump_samples(ir->samples, ir->scount);
1da177e4
LT
423
424 /* decode it */
6a59d64c 425 switch (core->boardnr) {
e52e98a7 426 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
fc40b261 427 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
e52e98a7
MCC
428 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
429
430 if (ircode == 0xffffffff) { /* decoding error */
431 ir_dprintk("pulse distance decoding error\n");
432 break;
433 }
434
435 ir_dprintk("pulse distance decoded: %x\n", ircode);
436
437 if (ircode == 0) { /* key still pressed */
438 ir_dprintk("pulse distance decoded repeat code\n");
439 ir->release = jiffies + msecs_to_jiffies(120);
440 break;
441 }
442
fc40b261 443 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
e52e98a7 444 ir_dprintk("pulse distance decoded wrong address\n");
4ac97914 445 break;
e52e98a7
MCC
446 }
447
448 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
449 ir_dprintk("pulse distance decoded wrong check sum\n");
450 break;
451 }
452
453 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
454
b7df3910 455 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
e52e98a7
MCC
456 ir->release = jiffies + msecs_to_jiffies(120);
457 break;
1da177e4
LT
458 case CX88_BOARD_HAUPPAUGE:
459 case CX88_BOARD_HAUPPAUGE_DVB_T1:
fb56cb65
ST
460 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
461 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
30367bfd 462 case CX88_BOARD_HAUPPAUGE_HVR1100:
76dc82ab 463 case CX88_BOARD_HAUPPAUGE_HVR3000:
5bd1b663
ST
464 case CX88_BOARD_HAUPPAUGE_HVR4000:
465 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
f1735bb2
EB
466 case CX88_BOARD_PCHDTV_HD3000:
467 case CX88_BOARD_PCHDTV_HD5500:
501d8cd4 468 case CX88_BOARD_HAUPPAUGE_IRONLY:
34c08029
DB
469 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
470 ir_dprintk("biphase decoded: %x\n", ircode);
471 /*
472 * RC5 has an extension bit which adds a new range
473 * of available codes, this is detected here. Also
474 * hauppauge remotes (black/silver) always use
475 * specific device ids. If we do not filter the
476 * device ids then messages destined for devices
477 * such as TVs (id=0) will get through to the
478 * device causing mis-fired events.
479 */
480 /* split rc5 data block ... */
481 start = (ircode & 0x2000) >> 13;
482 range = (ircode & 0x1000) >> 12;
483 toggle= (ircode & 0x0800) >> 11;
484 dev = (ircode & 0x07c0) >> 6;
485 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
486 if( start != 1)
487 /* no key pressed */
488 break;
489 if ( dev != 0x1e && dev != 0x1f )
490 /* not a hauppauge remote */
491 break;
492 ir_input_keydown(ir->input, &ir->ir, code, ircode);
493 ir->release = jiffies + msecs_to_jiffies(120);
494 break;
495 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
e52e98a7
MCC
496 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
497 ir_dprintk("biphase decoded: %x\n", ircode);
498 if ((ircode & 0xfffff000) != 0x3000)
1da177e4 499 break;
b7df3910 500 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
1da177e4
LT
501 ir->release = jiffies + msecs_to_jiffies(120);
502 break;
503 }
504
505 ir->scount = 0;
506 return;
507}
508
509/* ---------------------------------------------------------------------- */
510
511MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
512MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
513MODULE_LICENSE("GPL");
1da177e4
LT
514/*
515 * Local variables:
516 * c-basic-offset: 8
517 * End:
518 */
This page took 0.561599 seconds and 5 git commands to generate.