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>
32 #include <media/ir-common.h>
34 /* ---------------------------------------------------------------------- */
37 struct cx88_core *core;
38 struct input_dev *input;
39 struct ir_input_state ir;
43 /* sample from gpio pin 16 */
47 unsigned long release;
49 /* poll external decoder */
51 struct work_struct work;
52 struct timer_list timer;
61 module_param(ir_debug, int, 0644); /* debug level [IR] */
62 MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
64 #define ir_dprintk(fmt, arg...) if (ir_debug) \
65 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
67 /* ---------------------------------------------------------------------- */
69 static void cx88_ir_handle_key(struct cx88_IR *ir)
71 struct cx88_core *core = ir->core;
72 u32 gpio, data, auxgpio;
75 gpio = cx_read(ir->gpio_addr);
76 switch (core->boardnr) {
77 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
78 /* This board apparently uses a combination of 2 GPIO
79 to represent the keys. Additionally, the second GPIO
80 can be used for parity.
85 gpio = 0x758, auxgpio = 0xe5 or 0xf5
87 gpio = 0x758, auxgpio = 0xed or 0xfd
90 auxgpio = cx_read(MO_GP1_IO);
91 /* Take out the parity part */
92 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
94 case CX88_BOARD_WINFAST_DTV1000:
95 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
102 if (ir->last_gpio == auxgpio)
104 ir->last_gpio = auxgpio;
108 data = ir_extract_bits(gpio, ir->mask_keycode);
109 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
111 ir->polling ? "poll" : "irq",
112 (gpio & ir->mask_keydown) ? " down" : "",
113 (gpio & ir->mask_keyup) ? " up" : "");
115 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
116 u32 gpio_key = cx_read(MO_GP0_IO);
118 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
120 ir_input_keydown(ir->input, &ir->ir, data, data);
121 ir_input_nokey(ir->input, &ir->ir);
123 } else if (ir->mask_keydown) {
124 /* bit set on keydown */
125 if (gpio & ir->mask_keydown) {
126 ir_input_keydown(ir->input, &ir->ir, data, data);
128 ir_input_nokey(ir->input, &ir->ir);
131 } else if (ir->mask_keyup) {
132 /* bit cleared on keydown */
133 if (0 == (gpio & ir->mask_keyup)) {
134 ir_input_keydown(ir->input, &ir->ir, data, data);
136 ir_input_nokey(ir->input, &ir->ir);
140 /* can't distinguish keydown/up :-/ */
141 ir_input_keydown(ir->input, &ir->ir, data, data);
142 ir_input_nokey(ir->input, &ir->ir);
146 static void ir_timer(unsigned long data)
148 struct cx88_IR *ir = (struct cx88_IR *)data;
150 schedule_work(&ir->work);
153 static void cx88_ir_work(struct work_struct *work)
155 struct cx88_IR *ir = container_of(work, struct cx88_IR, work);
157 cx88_ir_handle_key(ir);
158 mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
161 void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
164 setup_timer(&ir->timer, ir_timer, (unsigned long)ir);
165 INIT_WORK(&ir->work, cx88_ir_work);
166 schedule_work(&ir->work);
169 core->pci_irqmask |= PCI_INT_IR_SMPINT;
170 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
171 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
175 void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
178 cx_write(MO_DDSCFG_IO, 0x0);
179 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
183 del_timer_sync(&ir->timer);
184 flush_scheduled_work();
188 /* ---------------------------------------------------------------------- */
190 int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
193 struct input_dev *input_dev;
194 IR_KEYTAB_TYPE *ir_codes = NULL;
195 int ir_type = IR_TYPE_OTHER;
198 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
199 input_dev = input_allocate_device();
200 if (!ir || !input_dev)
203 ir->input = input_dev;
205 /* detect & configure */
206 switch (core->boardnr) {
207 case CX88_BOARD_DNTV_LIVE_DVB_T:
208 case CX88_BOARD_KWORLD_DVB_T:
209 case CX88_BOARD_KWORLD_DVB_T_CX22702:
210 ir_codes = ir_codes_dntv_live_dvb_t;
211 ir->gpio_addr = MO_GP1_IO;
212 ir->mask_keycode = 0x1f;
213 ir->mask_keyup = 0x60;
214 ir->polling = 50; /* ms */
216 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
217 ir_codes = ir_codes_cinergy_1400;
218 ir_type = IR_TYPE_PD;
219 ir->sampling = 0xeb04; /* address */
221 case CX88_BOARD_HAUPPAUGE:
222 case CX88_BOARD_HAUPPAUGE_DVB_T1:
223 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
224 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
225 case CX88_BOARD_HAUPPAUGE_HVR1100:
226 case CX88_BOARD_HAUPPAUGE_HVR3000:
227 ir_codes = ir_codes_hauppauge_new;
228 ir_type = IR_TYPE_RC5;
231 case CX88_BOARD_WINFAST_DTV2000H:
232 ir_codes = ir_codes_winfast;
233 ir->gpio_addr = MO_GP0_IO;
234 ir->mask_keycode = 0x8f8;
235 ir->mask_keyup = 0x100;
236 ir->polling = 50; /* ms */
238 case CX88_BOARD_WINFAST2000XP_EXPERT:
239 case CX88_BOARD_WINFAST_DTV1000:
240 ir_codes = ir_codes_winfast;
241 ir->gpio_addr = MO_GP0_IO;
242 ir->mask_keycode = 0x8f8;
243 ir->mask_keyup = 0x100;
244 ir->polling = 1; /* ms */
246 case CX88_BOARD_IODATA_GVBCTV7E:
247 ir_codes = ir_codes_iodata_bctv7e;
248 ir->gpio_addr = MO_GP0_IO;
249 ir->mask_keycode = 0xfd;
250 ir->mask_keydown = 0x02;
251 ir->polling = 5; /* ms */
253 case CX88_BOARD_PROLINK_PLAYTVPVR:
254 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
255 ir_codes = ir_codes_pixelview;
256 ir->gpio_addr = MO_GP1_IO;
257 ir->mask_keycode = 0x1f;
258 ir->mask_keyup = 0x80;
259 ir->polling = 1; /* ms */
261 case CX88_BOARD_PROLINK_PV_8000GT:
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 */
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 */
275 case CX88_BOARD_ADSTECH_DVB_T_PCI:
276 ir_codes = ir_codes_adstech_dvb_t_pci;
277 ir->gpio_addr = MO_GP1_IO;
278 ir->mask_keycode = 0xbf;
279 ir->mask_keyup = 0x40;
280 ir->polling = 50; /* ms */
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 */
289 case CX88_BOARD_AVERTV_303:
290 case CX88_BOARD_AVERTV_STUDIO_303:
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 */
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 */
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 */
309 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
310 ir_codes = ir_codes_npgtech;
311 ir->gpio_addr = MO_GP0_IO;
312 ir->mask_keycode = 0xfa;
313 ir->polling = 50; /* ms */
315 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
316 ir_codes = ir_codes_pinnacle_pctv_hd;
317 ir_type = IR_TYPE_RC5;
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 */
328 if (NULL == ir_codes) {
333 /* init input device */
334 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
335 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
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;
342 if (pci->subsystem_vendor) {
343 input_dev->id.vendor = pci->subsystem_vendor;
344 input_dev->id.product = pci->subsystem_device;
346 input_dev->id.vendor = pci->vendor;
347 input_dev->id.product = pci->device;
349 input_dev->dev.parent = &pci->dev;
350 /* record handles to ourself */
354 cx88_ir_start(core, ir);
357 err = input_register_device(ir->input);
364 cx88_ir_stop(core, ir);
367 input_free_device(input_dev);
372 int cx88_ir_fini(struct cx88_core *core)
374 struct cx88_IR *ir = core->ir;
376 /* skip detach on non attached boards */
380 cx88_ir_stop(core, ir);
381 input_unregister_device(ir->input);
389 /* ---------------------------------------------------------------------- */
391 void cx88_ir_irq(struct cx88_core *core)
393 struct cx88_IR *ir = core->ir;
402 samples = cx_read(MO_SAMPLE_IO);
403 if (0 != samples && 0xffffffff != samples) {
404 /* record sample data */
405 if (ir->scount < ARRAY_SIZE(ir->samples))
406 ir->samples[ir->scount++] = samples;
410 /* nothing to sample */
411 if (ir->ir.keypressed && time_after(jiffies, ir->release))
412 ir_input_nokey(ir->input, &ir->ir);
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];
422 ir_dump_samples(ir->samples, ir->scount);
425 switch (core->boardnr) {
426 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
427 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
428 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
430 if (ircode == 0xffffffff) { /* decoding error */
431 ir_dprintk("pulse distance decoding error\n");
435 ir_dprintk("pulse distance decoded: %x\n", ircode);
437 if (ircode == 0) { /* key still pressed */
438 ir_dprintk("pulse distance decoded repeat code\n");
439 ir->release = jiffies + msecs_to_jiffies(120);
443 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
444 ir_dprintk("pulse distance decoded wrong address\n");
448 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
449 ir_dprintk("pulse distance decoded wrong check sum\n");
453 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
455 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
456 ir->release = jiffies + msecs_to_jiffies(120);
458 case CX88_BOARD_HAUPPAUGE:
459 case CX88_BOARD_HAUPPAUGE_DVB_T1:
460 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
461 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
462 case CX88_BOARD_HAUPPAUGE_HVR1100:
463 case CX88_BOARD_HAUPPAUGE_HVR3000:
464 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
465 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
466 ir_dprintk("biphase decoded: %x\n", ircode);
467 if ((ircode & 0xfffff000) != 0x3000)
469 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
470 ir->release = jiffies + msecs_to_jiffies(120);
478 /* ---------------------------------------------------------------------- */
480 MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
481 MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
482 MODULE_LICENSE("GPL");