cx88-input.c 12.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7
/*
 *
 * Device driver for GPIO attached remote control interfaces
 * on Conexant 2388x based TV/DVB cards.
 *
 * Copyright (c) 2003 Pavel Machek
 * Copyright (c) 2004 Gerd Knorr
8
 * Copyright (c) 2004, 2005 Chris Pascoe
L
Linus Torvalds 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 */

#include <linux/init.h>
#include <linux/delay.h>
#include <linux/input.h>
#include <linux/pci.h>
#include <linux/module.h>

#include "cx88.h"
32
#include <media/ir-common.h>
L
Linus Torvalds 已提交
33 34 35 36

/* ---------------------------------------------------------------------- */

struct cx88_IR {
M
Mauro Carvalho Chehab 已提交
37
	struct cx88_core *core;
38
	struct input_dev *input;
M
Mauro Carvalho Chehab 已提交
39 40 41
	struct ir_input_state ir;
	char name[32];
	char phys[32];
L
Linus Torvalds 已提交
42 43

	/* sample from gpio pin 16 */
44
	u32 sampling;
M
Mauro Carvalho Chehab 已提交
45 46 47
	u32 samples[16];
	int scount;
	unsigned long release;
L
Linus Torvalds 已提交
48 49

	/* poll external decoder */
M
Mauro Carvalho Chehab 已提交
50 51 52 53 54 55 56 57
	int polling;
	struct work_struct work;
	struct timer_list timer;
	u32 gpio_addr;
	u32 last_gpio;
	u32 mask_keycode;
	u32 mask_keydown;
	u32 mask_keyup;
L
Linus Torvalds 已提交
58 59
};

60
static int ir_debug;
M
Mauro Carvalho Chehab 已提交
61
module_param(ir_debug, int, 0644);	/* debug level [IR] */
L
Linus Torvalds 已提交
62 63 64
MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");

#define ir_dprintk(fmt, arg...)	if (ir_debug) \
65
	printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
L
Linus Torvalds 已提交
66 67 68 69 70 71

/* ---------------------------------------------------------------------- */

static void cx88_ir_handle_key(struct cx88_IR *ir)
{
	struct cx88_core *core = ir->core;
72
	u32 gpio, data, auxgpio;
L
Linus Torvalds 已提交
73 74 75

	/* read gpio value */
	gpio = cx_read(ir->gpio_addr);
76
	switch (core->boardnr) {
77
	case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
78 79 80 81 82 83 84 85 86 87 88 89 90 91
		/* This board apparently uses a combination of 2 GPIO
		   to represent the keys. Additionally, the second GPIO
		   can be used for parity.

		   Example:

		   for key "5"
			gpio = 0x758, auxgpio = 0xe5 or 0xf5
		   for key "Power"
			gpio = 0x758, auxgpio = 0xed or 0xfd
		 */

		auxgpio = cx_read(MO_GP1_IO);
		/* Take out the parity part */
92
		gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
93 94
		break;
	case CX88_BOARD_WINFAST_DTV1000:
95 96
		gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
		auxgpio = gpio;
97 98
		break;
	default:
99
		auxgpio = gpio;
100
	}
L
Linus Torvalds 已提交
101
	if (ir->polling) {
102
		if (ir->last_gpio == auxgpio)
L
Linus Torvalds 已提交
103
			return;
104
		ir->last_gpio = auxgpio;
L
Linus Torvalds 已提交
105 106 107 108 109
	}

	/* extract data */
	data = ir_extract_bits(gpio, ir->mask_keycode);
	ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
M
Mauro Carvalho Chehab 已提交
110 111 112 113
		   gpio, data,
		   ir->polling ? "poll" : "irq",
		   (gpio & ir->mask_keydown) ? " down" : "",
		   (gpio & ir->mask_keyup) ? " up" : "");
L
Linus Torvalds 已提交
114

115
	if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
116 117 118 119 120 121 122 123
		u32 gpio_key = cx_read(MO_GP0_IO);

		data = (data << 4) | ((gpio_key & 0xf0) >> 4);

		ir_input_keydown(ir->input, &ir->ir, data, data);
		ir_input_nokey(ir->input, &ir->ir);

	} else if (ir->mask_keydown) {
L
Linus Torvalds 已提交
124 125
		/* bit set on keydown */
		if (gpio & ir->mask_keydown) {
126
			ir_input_keydown(ir->input, &ir->ir, data, data);
L
Linus Torvalds 已提交
127
		} else {
128
			ir_input_nokey(ir->input, &ir->ir);
L
Linus Torvalds 已提交
129 130 131 132 133
		}

	} else if (ir->mask_keyup) {
		/* bit cleared on keydown */
		if (0 == (gpio & ir->mask_keyup)) {
134
			ir_input_keydown(ir->input, &ir->ir, data, data);
L
Linus Torvalds 已提交
135
		} else {
136
			ir_input_nokey(ir->input, &ir->ir);
L
Linus Torvalds 已提交
137 138 139 140
		}

	} else {
		/* can't distinguish keydown/up :-/ */
141 142
		ir_input_keydown(ir->input, &ir->ir, data, data);
		ir_input_nokey(ir->input, &ir->ir);
L
Linus Torvalds 已提交
143 144 145 146 147
	}
}

static void ir_timer(unsigned long data)
{
M
Mauro Carvalho Chehab 已提交
148
	struct cx88_IR *ir = (struct cx88_IR *)data;
L
Linus Torvalds 已提交
149 150 151 152

	schedule_work(&ir->work);
}

D
David Howells 已提交
153
static void cx88_ir_work(struct work_struct *work)
L
Linus Torvalds 已提交
154
{
D
David Howells 已提交
155
	struct cx88_IR *ir = container_of(work, struct cx88_IR, work);
L
Linus Torvalds 已提交
156 157

	cx88_ir_handle_key(ir);
158
	mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
L
Linus Torvalds 已提交
159 160
}

161
void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
162 163
{
	if (ir->polling) {
164
		setup_timer(&ir->timer, ir_timer, (unsigned long)ir);
165
		INIT_WORK(&ir->work, cx88_ir_work);
166 167 168
		schedule_work(&ir->work);
	}
	if (ir->sampling) {
169
		core->pci_irqmask |= PCI_INT_IR_SMPINT;
170 171 172 173 174
		cx_write(MO_DDS_IO, 0xa80a80);	/* 4 kHz sample rate */
		cx_write(MO_DDSCFG_IO, 0x5);	/* enable */
	}
}

175
void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
176 177 178
{
	if (ir->sampling) {
		cx_write(MO_DDSCFG_IO, 0x0);
179
		core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
180 181 182 183 184 185 186 187
	}

	if (ir->polling) {
		del_timer_sync(&ir->timer);
		flush_scheduled_work();
	}
}

L
Linus Torvalds 已提交
188 189 190 191 192
/* ---------------------------------------------------------------------- */

int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
{
	struct cx88_IR *ir;
193
	struct input_dev *input_dev;
L
Linus Torvalds 已提交
194 195
	IR_KEYTAB_TYPE *ir_codes = NULL;
	int ir_type = IR_TYPE_OTHER;
196
	int err = -ENOMEM;
L
Linus Torvalds 已提交
197

198 199
	ir = kzalloc(sizeof(*ir), GFP_KERNEL);
	input_dev = input_allocate_device();
200 201
	if (!ir || !input_dev)
		goto err_out_free;
202 203

	ir->input = input_dev;
L
Linus Torvalds 已提交
204 205

	/* detect & configure */
206
	switch (core->boardnr) {
L
Linus Torvalds 已提交
207
	case CX88_BOARD_DNTV_LIVE_DVB_T:
208
	case CX88_BOARD_KWORLD_DVB_T:
209
	case CX88_BOARD_KWORLD_DVB_T_CX22702:
M
Mauro Carvalho Chehab 已提交
210 211
		ir_codes = ir_codes_dntv_live_dvb_t;
		ir->gpio_addr = MO_GP1_IO;
L
Linus Torvalds 已提交
212
		ir->mask_keycode = 0x1f;
M
Mauro Carvalho Chehab 已提交
213 214
		ir->mask_keyup = 0x60;
		ir->polling = 50; /* ms */
L
Linus Torvalds 已提交
215
		break;
216 217 218
	case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
		ir_codes = ir_codes_cinergy_1400;
		ir_type = IR_TYPE_PD;
219
		ir->sampling = 0xeb04; /* address */
220
		break;
L
Linus Torvalds 已提交
221 222
	case CX88_BOARD_HAUPPAUGE:
	case CX88_BOARD_HAUPPAUGE_DVB_T1:
223 224
	case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
	case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
225
	case CX88_BOARD_HAUPPAUGE_HVR1100:
226
	case CX88_BOARD_HAUPPAUGE_HVR3000:
M
Mauro Carvalho Chehab 已提交
227 228 229
		ir_codes = ir_codes_hauppauge_new;
		ir_type = IR_TYPE_RC5;
		ir->sampling = 1;
L
Linus Torvalds 已提交
230
		break;
231
	case CX88_BOARD_WINFAST_DTV2000H:
M
Mauro Carvalho Chehab 已提交
232 233
		ir_codes = ir_codes_winfast;
		ir->gpio_addr = MO_GP0_IO;
L
Linus Torvalds 已提交
234
		ir->mask_keycode = 0x8f8;
M
Mauro Carvalho Chehab 已提交
235
		ir->mask_keyup = 0x100;
236
		ir->polling = 50; /* ms */
L
Linus Torvalds 已提交
237
		break;
238
	case CX88_BOARD_WINFAST2000XP_EXPERT:
239
	case CX88_BOARD_WINFAST_DTV1000:
240 241 242 243 244 245
		ir_codes = ir_codes_winfast;
		ir->gpio_addr = MO_GP0_IO;
		ir->mask_keycode = 0x8f8;
		ir->mask_keyup = 0x100;
		ir->polling = 1; /* ms */
		break;
L
Linus Torvalds 已提交
246
	case CX88_BOARD_IODATA_GVBCTV7E:
M
Mauro Carvalho Chehab 已提交
247 248
		ir_codes = ir_codes_iodata_bctv7e;
		ir->gpio_addr = MO_GP0_IO;
L
Linus Torvalds 已提交
249 250
		ir->mask_keycode = 0xfd;
		ir->mask_keydown = 0x02;
M
Mauro Carvalho Chehab 已提交
251
		ir->polling = 5; /* ms */
L
Linus Torvalds 已提交
252
		break;
253
	case CX88_BOARD_PROLINK_PLAYTVPVR:
254
	case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
M
Mauro Carvalho Chehab 已提交
255 256
		ir_codes = ir_codes_pixelview;
		ir->gpio_addr = MO_GP1_IO;
257
		ir->mask_keycode = 0x1f;
M
Mauro Carvalho Chehab 已提交
258 259
		ir->mask_keyup = 0x80;
		ir->polling = 1; /* ms */
260
		break;
261 262 263 264 265 266 267
	case CX88_BOARD_PROLINK_PV_8000GT:
		ir_codes = ir_codes_pixelview_new;
		ir->gpio_addr = MO_GP1_IO;
		ir->mask_keycode = 0x3f;
		ir->mask_keyup = 0x80;
		ir->polling = 1; /* ms */
		break;
268 269 270 271 272 273 274
	case CX88_BOARD_KWORLD_LTV883:
		ir_codes = ir_codes_pixelview;
		ir->gpio_addr = MO_GP1_IO;
		ir->mask_keycode = 0x1f;
		ir->mask_keyup = 0x60;
		ir->polling = 1; /* ms */
		break;
M
Mauro Carvalho Chehab 已提交
275
	case CX88_BOARD_ADSTECH_DVB_T_PCI:
M
Mauro Carvalho Chehab 已提交
276 277
		ir_codes = ir_codes_adstech_dvb_t_pci;
		ir->gpio_addr = MO_GP1_IO;
M
Mauro Carvalho Chehab 已提交
278
		ir->mask_keycode = 0xbf;
M
Mauro Carvalho Chehab 已提交
279 280 281 282 283 284 285 286 287
		ir->mask_keyup = 0x40;
		ir->polling = 50; /* ms */
		break;
	case CX88_BOARD_MSI_TVANYWHERE_MASTER:
		ir_codes = ir_codes_msi_tvanywhere;
		ir->gpio_addr = MO_GP1_IO;
		ir->mask_keycode = 0x1f;
		ir->mask_keyup = 0x40;
		ir->polling = 1; /* ms */
M
Mauro Carvalho Chehab 已提交
288
		break;
289
	case CX88_BOARD_AVERTV_303:
290
	case CX88_BOARD_AVERTV_STUDIO_303:
291 292 293 294 295 296
		ir_codes         = ir_codes_avertv_303;
		ir->gpio_addr    = MO_GP2_IO;
		ir->mask_keycode = 0xfb;
		ir->mask_keydown = 0x02;
		ir->polling      = 50; /* ms */
		break;
297 298 299 300 301
	case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
		ir_codes = ir_codes_dntv_live_dvbt_pro;
		ir_type = IR_TYPE_PD;
		ir->sampling = 0xff00; /* address */
		break;
302 303 304 305 306 307 308
	case CX88_BOARD_NORWOOD_MICRO:
		ir_codes         = ir_codes_norwood;
		ir->gpio_addr    = MO_GP1_IO;
		ir->mask_keycode = 0x0e;
		ir->mask_keyup   = 0x80;
		ir->polling      = 50; /* ms */
		break;
309
	case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
310 311 312 313 314
		ir_codes = ir_codes_npgtech;
		ir->gpio_addr = MO_GP0_IO;
		ir->mask_keycode = 0xfa;
		ir->polling = 50; /* ms */
		break;
315 316 317 318 319
	case CX88_BOARD_PINNACLE_PCTV_HD_800i:
		ir_codes = ir_codes_pinnacle_pctv_hd;
		ir_type = IR_TYPE_RC5;
		ir->sampling = 1;
		break;
L
Linus Torvalds 已提交
320
	}
321

L
Linus Torvalds 已提交
322
	if (NULL == ir_codes) {
323 324
		err = -ENODEV;
		goto err_out_free;
L
Linus Torvalds 已提交
325 326 327
	}

	/* init input device */
328
	snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
M
Mauro Carvalho Chehab 已提交
329
	snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
L
Linus Torvalds 已提交
330

331 332 333 334 335
	ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
	input_dev->name = ir->name;
	input_dev->phys = ir->phys;
	input_dev->id.bustype = BUS_PCI;
	input_dev->id.version = 1;
L
Linus Torvalds 已提交
336
	if (pci->subsystem_vendor) {
337 338
		input_dev->id.vendor = pci->subsystem_vendor;
		input_dev->id.product = pci->subsystem_device;
L
Linus Torvalds 已提交
339
	} else {
340 341
		input_dev->id.vendor = pci->vendor;
		input_dev->id.product = pci->device;
L
Linus Torvalds 已提交
342
	}
343
	input_dev->dev.parent = &pci->dev;
L
Linus Torvalds 已提交
344 345 346 347
	/* record handles to ourself */
	ir->core = core;
	core->ir = ir;

348
	cx88_ir_start(core, ir);
L
Linus Torvalds 已提交
349 350

	/* all done */
351 352 353
	err = input_register_device(ir->input);
	if (err)
		goto err_out_stop;
L
Linus Torvalds 已提交
354 355

	return 0;
356 357 358 359 360 361 362 363

 err_out_stop:
	cx88_ir_stop(core, ir);
	core->ir = NULL;
 err_out_free:
	input_free_device(input_dev);
	kfree(ir);
	return err;
L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371 372 373
}

int cx88_ir_fini(struct cx88_core *core)
{
	struct cx88_IR *ir = core->ir;

	/* skip detach on non attached boards */
	if (NULL == ir)
		return 0;

374
	cx88_ir_stop(core, ir);
375
	input_unregister_device(ir->input);
L
Linus Torvalds 已提交
376 377 378 379 380 381 382 383 384 385 386 387
	kfree(ir);

	/* done */
	core->ir = NULL;
	return 0;
}

/* ---------------------------------------------------------------------- */

void cx88_ir_irq(struct cx88_core *core)
{
	struct cx88_IR *ir = core->ir;
388
	u32 samples, ircode;
L
Linus Torvalds 已提交
389 390 391 392 393 394 395 396
	int i;

	if (NULL == ir)
		return;
	if (!ir->sampling)
		return;

	samples = cx_read(MO_SAMPLE_IO);
M
Mauro Carvalho Chehab 已提交
397
	if (0 != samples && 0xffffffff != samples) {
L
Linus Torvalds 已提交
398 399 400 401 402 403 404
		/* record sample data */
		if (ir->scount < ARRAY_SIZE(ir->samples))
			ir->samples[ir->scount++] = samples;
		return;
	}
	if (!ir->scount) {
		/* nothing to sample */
M
Mauro Carvalho Chehab 已提交
405
		if (ir->ir.keypressed && time_after(jiffies, ir->release))
406
			ir_input_nokey(ir->input, &ir->ir);
L
Linus Torvalds 已提交
407 408 409 410 411 412 413 414 415
		return;
	}

	/* have a complete sample */
	if (ir->scount < ARRAY_SIZE(ir->samples))
		ir->samples[ir->scount++] = samples;
	for (i = 0; i < ir->scount; i++)
		ir->samples[i] = ~ir->samples[i];
	if (ir_debug)
M
Mauro Carvalho Chehab 已提交
416
		ir_dump_samples(ir->samples, ir->scount);
L
Linus Torvalds 已提交
417 418

	/* decode it */
419
	switch (core->boardnr) {
420
	case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
421
	case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
		ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);

		if (ircode == 0xffffffff) { /* decoding error */
			ir_dprintk("pulse distance decoding error\n");
			break;
		}

		ir_dprintk("pulse distance decoded: %x\n", ircode);

		if (ircode == 0) { /* key still pressed */
			ir_dprintk("pulse distance decoded repeat code\n");
			ir->release = jiffies + msecs_to_jiffies(120);
			break;
		}

437
		if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
438
			ir_dprintk("pulse distance decoded wrong address\n");
439
			break;
440 441 442 443 444 445 446 447 448
		}

		if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
			ir_dprintk("pulse distance decoded wrong check sum\n");
			break;
		}

		ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);

449
		ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
450 451
		ir->release = jiffies + msecs_to_jiffies(120);
		break;
L
Linus Torvalds 已提交
452 453
	case CX88_BOARD_HAUPPAUGE:
	case CX88_BOARD_HAUPPAUGE_DVB_T1:
454 455
	case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
	case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
C
 
Chris Pascoe 已提交
456
	case CX88_BOARD_HAUPPAUGE_HVR1100:
457
	case CX88_BOARD_HAUPPAUGE_HVR3000:
458
	case CX88_BOARD_PINNACLE_PCTV_HD_800i:
459 460 461
		ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
		ir_dprintk("biphase decoded: %x\n", ircode);
		if ((ircode & 0xfffff000) != 0x3000)
L
Linus Torvalds 已提交
462
			break;
463
		ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
L
Linus Torvalds 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481
		ir->release = jiffies + msecs_to_jiffies(120);
		break;
	}

	ir->scount = 0;
	return;
}

/* ---------------------------------------------------------------------- */

MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
MODULE_LICENSE("GPL");
/*
 * Local variables:
 * c-basic-offset: 8
 * End:
 */