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