saa7134-input.c 16.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 *
 * handle saa7134 IR remotes via linux kernel input layer.
 *
 * 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/module.h>
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/input.h>

#include "saa7134-reg.h"
#include "saa7134.h"

30
static unsigned int disable_ir;
L
Linus Torvalds 已提交
31 32 33
module_param(disable_ir, int, 0444);
MODULE_PARM_DESC(disable_ir,"disable infrared remote support");

34
static unsigned int ir_debug;
L
Linus Torvalds 已提交
35 36 37
module_param(ir_debug, int, 0644);
MODULE_PARM_DESC(ir_debug,"enable debug messages [IR]");

38
static int pinnacle_remote;
39 40 41
module_param(pinnacle_remote, int, 0644);    /* Choose Pinnacle PCTV remote */
MODULE_PARM_DESC(pinnacle_remote, "Specify Pinnacle PCTV remote: 0=coloured, 1=grey (defaults to 0)");

42
static int ir_rc5_remote_gap = 885;
43
module_param(ir_rc5_remote_gap, int, 0644);
44
static int ir_rc5_key_timeout = 115;
45 46
module_param(ir_rc5_key_timeout, int, 0644);

47 48 49 50 51
static int repeat_delay = 500;
module_param(repeat_delay, int, 0644);
MODULE_PARM_DESC(repeat_delay, "delay before key repeat started");
static int repeat_period = 33;
module_param(repeat_period, int, 0644);
52
MODULE_PARM_DESC(repeat_period, "repeat period between "
53 54
    "keypresses when key is down");

55 56 57 58 59
static unsigned int disable_other_ir;
module_param(disable_other_ir, int, 0644);
MODULE_PARM_DESC(disable_other_ir, "disable full codes of "
    "alternative remotes from other manufacturers");

L
Linus Torvalds 已提交
60 61
#define dprintk(fmt, arg...)	if (ir_debug) \
	printk(KERN_DEBUG "%s/ir: " fmt, dev->name , ## arg)
62 63
#define i2cdprintk(fmt, arg...)    if (ir_debug) \
	printk(KERN_DEBUG "%s/ir: " fmt, ir->c.name , ## arg)
L
Linus Torvalds 已提交
64

65 66 67
/** rc5 functions */
static int saa7134_rc5_irq(struct saa7134_dev *dev);

68
/* -------------------- GPIO generic keycode builder -------------------- */
L
Linus Torvalds 已提交
69 70 71

static int build_key(struct saa7134_dev *dev)
{
72
	struct card_ir *ir = dev->remote;
L
Linus Torvalds 已提交
73 74
	u32 gpio, data;

75 76 77 78 79 80 81
	/* here comes the additional handshake steps for some cards */
	switch (dev->board) {
	case SAA7134_BOARD_GOTVIEW_7135:
		saa_setb(SAA7134_GPIO_GPSTATUS1, 0x80);
		saa_clearb(SAA7134_GPIO_GPSTATUS1, 0x80);
		break;
	}
L
Linus Torvalds 已提交
82 83 84 85 86
	/* rising SAA7134_GPIO_GPRESCAN reads the status */
	saa_clearb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);
	saa_setb(SAA7134_GPIO_GPMODE3,SAA7134_GPIO_GPRESCAN);

	gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);
87 88 89 90 91
	if (ir->polling) {
		if (ir->last_gpio == gpio)
			return 0;
		ir->last_gpio = gpio;
	}
L
Linus Torvalds 已提交
92

93
	data = ir_extract_bits(gpio, ir->mask_keycode);
L
Linus Torvalds 已提交
94 95 96
	dprintk("build_key gpio=0x%x mask=0x%x data=%d\n",
		gpio, ir->mask_keycode, data);

97 98 99 100 101 102 103
	if (ir->polling) {
		if ((ir->mask_keydown  &&  (0 != (gpio & ir->mask_keydown))) ||
		    (ir->mask_keyup    &&  (0 == (gpio & ir->mask_keyup)))) {
			ir_input_keydown(ir->dev, &ir->ir, data, data);
		} else {
			ir_input_nokey(ir->dev, &ir->ir);
		}
L
Linus Torvalds 已提交
104
	}
105 106 107 108 109 110 111 112
	else {	/* IRQ driven mode - handle key press and release in one go */
		if ((ir->mask_keydown  &&  (0 != (gpio & ir->mask_keydown))) ||
		    (ir->mask_keyup    &&  (0 == (gpio & ir->mask_keyup)))) {
			ir_input_keydown(ir->dev, &ir->ir, data, data);
			ir_input_nokey(ir->dev, &ir->ir);
		}
	}

L
Linus Torvalds 已提交
113 114 115
	return 0;
}

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140
/* --------------------- Chip specific I2C key builders ----------------- */

static int get_key_purpletv(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
{
	unsigned char b;

	/* poll IR chip */
	if (1 != i2c_master_recv(&ir->c,&b,1)) {
		i2cdprintk("read error\n");
		return -EIO;
	}

	/* no button press */
	if (b==0)
		return 0;

	/* repeating */
	if (b & 0x80)
		return 1;

	*ir_key = b;
	*ir_raw = b;
	return 1;
}

141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
static int get_key_hvr1110(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
{
	unsigned char buf[5], cod4, code3, code4;

	/* poll IR chip */
	if (5 != i2c_master_recv(&ir->c,buf,5))
		return -EIO;

	cod4	= buf[4];
	code4	= (cod4 >> 2);
	code3	= buf[3];
	if (code3 == 0)
		/* no key pressed */
		return 0;

	/* return key */
	*ir_key = code4;
	*ir_raw = code4;
	return 1;
}

162 163 164 165 166 167 168 169 170 171 172 173 174 175

static int get_key_beholdm6xx(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
{
	unsigned char data[12];
	u32 gpio;

	struct saa7134_dev *dev = ir->c.adapter->algo_data;

	/* rising SAA7134_GPIO_GPRESCAN reads the status */
	saa_clearb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);
	saa_setb(SAA7134_GPIO_GPMODE3, SAA7134_GPIO_GPRESCAN);

	gpio = saa_readl(SAA7134_GPIO_GPSTATUS0 >> 2);

176
	if (0x400000 & ~gpio)
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
		return 0; /* No button press */

	ir->c.addr = 0x5a >> 1;

	if (12 != i2c_master_recv(&ir->c, data, 12)) {
		i2cdprintk("read error\n");
		return -EIO;
	}
	/* IR of this card normally decode signals NEC-standard from
	 * - Sven IHOO MT 5.1R remote. xxyye718
	 * - Sven DVD HD-10xx remote. xxyyf708
	 * - BBK ...
	 * - mayby others
	 * So, skip not our, if disable full codes mode.
	 */
	if (data[10] != 0x6b && data[11] != 0x86 && disable_other_ir)
		return 0;

	*ir_key = data[9];
	*ir_raw = data[9];

	return 1;
}

L
Linus Torvalds 已提交
201 202
void saa7134_input_irq(struct saa7134_dev *dev)
{
203
	struct card_ir *ir = dev->remote;
L
Linus Torvalds 已提交
204

205
	if (!ir->polling && !ir->rc5_gpio) {
L
Linus Torvalds 已提交
206
		build_key(dev);
207 208 209
	} else if (ir->rc5_gpio) {
		saa7134_rc5_irq(dev);
	}
L
Linus Torvalds 已提交
210 211 212 213
}

static void saa7134_input_timer(unsigned long data)
{
214
	struct saa7134_dev *dev = (struct saa7134_dev *)data;
215
	struct card_ir *ir = dev->remote;
L
Linus Torvalds 已提交
216 217

	build_key(dev);
218
	mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
L
Linus Torvalds 已提交
219 220
}

221
void saa7134_ir_start(struct saa7134_dev *dev, struct card_ir *ir)
222 223
{
	if (ir->polling) {
224 225
		setup_timer(&ir->timer, saa7134_input_timer,
			    (unsigned long)dev);
226 227
		ir->timer.expires  = jiffies + HZ;
		add_timer(&ir->timer);
228 229 230 231 232 233 234 235 236 237 238 239 240
	} else if (ir->rc5_gpio) {
		/* set timer_end for code completion */
		init_timer(&ir->timer_end);
		ir->timer_end.function = ir_rc5_timer_end;
		ir->timer_end.data = (unsigned long)ir;
		init_timer(&ir->timer_keyup);
		ir->timer_keyup.function = ir_rc5_timer_keyup;
		ir->timer_keyup.data = (unsigned long)ir;
		ir->shift_by = 2;
		ir->start = 0x2;
		ir->addr = 0x17;
		ir->rc5_key_timeout = ir_rc5_key_timeout;
		ir->rc5_remote_gap = ir_rc5_remote_gap;
241 242 243
	}
}

244
void saa7134_ir_stop(struct saa7134_dev *dev)
245 246 247 248 249
{
	if (dev->remote->polling)
		del_timer_sync(&dev->remote->timer);
}

L
Linus Torvalds 已提交
250 251
int saa7134_input_init1(struct saa7134_dev *dev)
{
252
	struct card_ir *ir;
253
	struct input_dev *input_dev;
L
Linus Torvalds 已提交
254 255 256 257 258
	IR_KEYTAB_TYPE *ir_codes = NULL;
	u32 mask_keycode = 0;
	u32 mask_keydown = 0;
	u32 mask_keyup   = 0;
	int polling      = 0;
259
	int rc5_gpio	 = 0;
L
Linus Torvalds 已提交
260
	int ir_type      = IR_TYPE_OTHER;
261
	int err;
L
Linus Torvalds 已提交
262

263
	if (dev->has_remote != SAA7134_REMOTE_GPIO)
L
Linus Torvalds 已提交
264 265 266 267 268 269 270 271
		return -ENODEV;
	if (disable_ir)
		return -ENODEV;

	/* detect & configure */
	switch (dev->board) {
	case SAA7134_BOARD_FLYVIDEO2000:
	case SAA7134_BOARD_FLYVIDEO3000:
272
	case SAA7134_BOARD_FLYTVPLATINUM_FM:
273
	case SAA7134_BOARD_FLYTVPLATINUM_MINI2:
274
		ir_codes     = ir_codes_flyvideo;
L
Linus Torvalds 已提交
275 276 277 278 279 280
		mask_keycode = 0xEC00000;
		mask_keydown = 0x0040000;
		break;
	case SAA7134_BOARD_CINERGY400:
	case SAA7134_BOARD_CINERGY600:
	case SAA7134_BOARD_CINERGY600_MK3:
281
		ir_codes     = ir_codes_cinergy;
L
Linus Torvalds 已提交
282 283 284 285 286
		mask_keycode = 0x00003f;
		mask_keyup   = 0x040000;
		break;
	case SAA7134_BOARD_ECS_TVP3XP:
	case SAA7134_BOARD_ECS_TVP3XP_4CB5:
287
		ir_codes     = ir_codes_eztv;
288 289
		mask_keycode = 0x00017c;
		mask_keyup   = 0x000002;
L
Linus Torvalds 已提交
290
		polling      = 50; // ms
291 292
		break;
	case SAA7134_BOARD_KWORLD_XPERT:
L
Linus Torvalds 已提交
293
	case SAA7134_BOARD_AVACSSMARTTV:
294
		ir_codes     = ir_codes_pixelview;
L
Linus Torvalds 已提交
295 296 297 298 299
		mask_keycode = 0x00001F;
		mask_keyup   = 0x000020;
		polling      = 50; // ms
		break;
	case SAA7134_BOARD_MD2819:
300
	case SAA7134_BOARD_KWORLD_VSTREAM_XPERT:
L
Linus Torvalds 已提交
301 302
	case SAA7134_BOARD_AVERMEDIA_305:
	case SAA7134_BOARD_AVERMEDIA_307:
303 304
	case SAA7134_BOARD_AVERMEDIA_STUDIO_305:
	case SAA7134_BOARD_AVERMEDIA_STUDIO_307:
305
	case SAA7134_BOARD_AVERMEDIA_STUDIO_507:
306
	case SAA7134_BOARD_AVERMEDIA_GO_007_FM:
307
	case SAA7134_BOARD_AVERMEDIA_M102:
308
		ir_codes     = ir_codes_avermedia;
L
Linus Torvalds 已提交
309 310 311 312 313 314 315
		mask_keycode = 0x0007C8;
		mask_keydown = 0x000010;
		polling      = 50; // ms
		/* Set GPIO pin2 to high to enable the IR controller */
		saa_setb(SAA7134_GPIO_GPMODE0, 0x4);
		saa_setb(SAA7134_GPIO_GPSTATUS0, 0x4);
		break;
316
	case SAA7134_BOARD_AVERMEDIA_777:
317
	case SAA7134_BOARD_AVERMEDIA_A16AR:
318 319 320 321 322 323 324
		ir_codes     = ir_codes_avermedia;
		mask_keycode = 0x02F200;
		mask_keydown = 0x000400;
		polling      = 50; // ms
		/* Without this we won't receive key up events */
		saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
		saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
325
		break;
326 327 328 329 330 331 332 333 334
	case SAA7134_BOARD_AVERMEDIA_A16D:
		ir_codes     = ir_codes_avermedia_a16d;
		mask_keycode = 0x02F200;
		mask_keydown = 0x000400;
		polling      = 50; /* ms */
		/* Without this we won't receive key up events */
		saa_setb(SAA7134_GPIO_GPMODE1, 0x1);
		saa_setb(SAA7134_GPIO_GPSTATUS1, 0x1);
		break;
335
	case SAA7134_BOARD_KWORLD_TERMINATOR:
336
		ir_codes     = ir_codes_pixelview;
337 338 339 340
		mask_keycode = 0x00001f;
		mask_keyup   = 0x000060;
		polling      = 50; // ms
		break;
341 342
	case SAA7134_BOARD_MANLI_MTV001:
	case SAA7134_BOARD_MANLI_MTV002:
343 344 345 346 347
		ir_codes     = ir_codes_manli;
		mask_keycode = 0x001f00;
		mask_keyup   = 0x004000;
		polling      = 50; /* ms */
		break;
348
	case SAA7134_BOARD_BEHOLD_409FM:
349 350 351 352 353 354 355 356 357 358
	case SAA7134_BOARD_BEHOLD_401:
	case SAA7134_BOARD_BEHOLD_403:
	case SAA7134_BOARD_BEHOLD_403FM:
	case SAA7134_BOARD_BEHOLD_405:
	case SAA7134_BOARD_BEHOLD_405FM:
	case SAA7134_BOARD_BEHOLD_407:
	case SAA7134_BOARD_BEHOLD_407FM:
	case SAA7134_BOARD_BEHOLD_409:
	case SAA7134_BOARD_BEHOLD_505FM:
	case SAA7134_BOARD_BEHOLD_507_9FM:
359
		ir_codes     = ir_codes_manli;
360 361 362 363 364 365 366
		mask_keycode = 0x003f00;
		mask_keyup   = 0x004000;
		polling      = 50; /* ms */
		break;
	case SAA7134_BOARD_BEHOLD_COLUMBUS_TVFM:
		ir_codes     = ir_codes_behold_columbus;
		mask_keycode = 0x003f00;
367 368 369
		mask_keyup   = 0x004000;
		polling      = 50; // ms
		break;
370
	case SAA7134_BOARD_SEDNA_PC_TV_CARDBUS:
371
		ir_codes     = ir_codes_pctv_sedna;
372 373 374 375
		mask_keycode = 0x001f00;
		mask_keyup   = 0x004000;
		polling      = 50; // ms
		break;
376
	case SAA7134_BOARD_GOTVIEW_7135:
377
		ir_codes     = ir_codes_gotview7135;
378
		mask_keycode = 0x0003CC;
379
		mask_keydown = 0x000010;
380 381
		polling	     = 5; /* ms */
		saa_setb(SAA7134_GPIO_GPMODE1, 0x80);
382
		break;
L
Linus Torvalds 已提交
383
	case SAA7134_BOARD_VIDEOMATE_TV_PVR:
384
	case SAA7134_BOARD_VIDEOMATE_GOLD_PLUS:
385
	case SAA7134_BOARD_VIDEOMATE_TV_GOLD_PLUSII:
386
		ir_codes     = ir_codes_videomate_tv_pvr;
L
Linus Torvalds 已提交
387 388 389 390
		mask_keycode = 0x00003F;
		mask_keyup   = 0x400000;
		polling      = 50; // ms
		break;
391 392 393 394 395 396
	case SAA7134_BOARD_PROTEUS_2309:
		ir_codes     = ir_codes_proteus_2309;
		mask_keycode = 0x00007F;
		mask_keyup   = 0x000080;
		polling      = 50; // ms
		break;
397 398
	case SAA7134_BOARD_VIDEOMATE_DVBT_300:
	case SAA7134_BOARD_VIDEOMATE_DVBT_200:
399
		ir_codes     = ir_codes_videomate_tv_pvr;
400 401 402
		mask_keycode = 0x003F00;
		mask_keyup   = 0x040000;
		break;
403
	case SAA7134_BOARD_FLYDVBS_LR300:
404
	case SAA7134_BOARD_FLYDVBT_LR301:
405
	case SAA7134_BOARD_FLYDVBTDUO:
406 407 408 409
		ir_codes     = ir_codes_flydvb;
		mask_keycode = 0x0001F00;
		mask_keydown = 0x0040000;
		break;
410
	case SAA7134_BOARD_ASUSTeK_P7131_DUAL:
411
	case SAA7134_BOARD_ASUSTeK_P7131_HYBRID_LNA:
412
       case SAA7134_BOARD_ASUSTeK_P7131_ANALOG:
413 414 415 416
		ir_codes     = ir_codes_asus_pc39;
		mask_keydown = 0x0040000;
		rc5_gpio = 1;
		break;
417 418 419 420 421 422 423
	case SAA7134_BOARD_ENCORE_ENLTV:
	case SAA7134_BOARD_ENCORE_ENLTV_FM:
		ir_codes     = ir_codes_encore_enltv;
		mask_keycode = 0x00007f;
		mask_keyup   = 0x040000;
		polling      = 50; // ms
		break;
424 425 426 427 428 429
	case SAA7134_BOARD_10MOONSTVMASTER3:
		ir_codes     = ir_codes_encore_enltv;
		mask_keycode = 0x5f80000;
		mask_keyup   = 0x8000000;
		polling      = 50; //ms
		break;
430 431 432 433 434 435
	case SAA7134_BOARD_GENIUS_TVGO_A11MCE:
		ir_codes     = ir_codes_genius_tvgo_a11mce;
		mask_keycode = 0xff;
		mask_keydown = 0xf00000;
		polling = 50; /* ms */
		break;
L
Linus Torvalds 已提交
436 437 438 439 440 441 442
	}
	if (NULL == ir_codes) {
		printk("%s: Oops: IR config error [card=%d]\n",
		       dev->name, dev->board);
		return -ENODEV;
	}

443 444 445
	ir = kzalloc(sizeof(*ir), GFP_KERNEL);
	input_dev = input_allocate_device();
	if (!ir || !input_dev) {
446 447
		err = -ENOMEM;
		goto err_out_free;
448
	}
L
Linus Torvalds 已提交
449

450 451
	ir->dev = input_dev;

L
Linus Torvalds 已提交
452 453 454 455
	/* init hardware-specific stuff */
	ir->mask_keycode = mask_keycode;
	ir->mask_keydown = mask_keydown;
	ir->mask_keyup   = mask_keyup;
456
	ir->polling      = polling;
457
	ir->rc5_gpio	 = rc5_gpio;
L
Linus Torvalds 已提交
458 459 460 461 462 463 464

	/* init input device */
	snprintf(ir->name, sizeof(ir->name), "saa7134 IR (%s)",
		 saa7134_boards[dev->board].name);
	snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
		 pci_name(dev->pci));

465 466 467 468 469
	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 已提交
470
	if (dev->pci->subsystem_vendor) {
471 472
		input_dev->id.vendor  = dev->pci->subsystem_vendor;
		input_dev->id.product = dev->pci->subsystem_device;
L
Linus Torvalds 已提交
473
	} else {
474 475
		input_dev->id.vendor  = dev->pci->vendor;
		input_dev->id.product = dev->pci->device;
L
Linus Torvalds 已提交
476
	}
477
	input_dev->dev.parent = &dev->pci->dev;
L
Linus Torvalds 已提交
478 479

	dev->remote = ir;
480 481 482 483 484
	saa7134_ir_start(dev, ir);

	err = input_register_device(ir->dev);
	if (err)
		goto err_out_stop;
L
Linus Torvalds 已提交
485

486 487 488 489
	/* the remote isn't as bouncy as a keyboard */
	ir->dev->rep[REP_DELAY] = repeat_delay;
	ir->dev->rep[REP_PERIOD] = repeat_period;

L
Linus Torvalds 已提交
490
	return 0;
491 492 493 494 495 496 497 498

 err_out_stop:
	saa7134_ir_stop(dev);
	dev->remote = NULL;
 err_out_free:
	input_free_device(input_dev);
	kfree(ir);
	return err;
L
Linus Torvalds 已提交
499 500 501 502 503 504 505
}

void saa7134_input_fini(struct saa7134_dev *dev)
{
	if (NULL == dev->remote)
		return;

506
	saa7134_ir_stop(dev);
507
	input_unregister_device(dev->remote->dev);
L
Linus Torvalds 已提交
508 509 510 511
	kfree(dev->remote);
	dev->remote = NULL;
}

512 513 514
void saa7134_set_i2c_ir(struct saa7134_dev *dev, struct IR_i2c *ir)
{
	if (disable_ir) {
515
		dprintk("Found supported i2c remote, but IR has been disabled\n");
516 517 518 519 520 521
		ir->get_key=NULL;
		return;
	}

	switch (dev->board) {
	case SAA7134_BOARD_PINNACLE_PCTV_110i:
522
	case SAA7134_BOARD_PINNACLE_PCTV_310i:
523
		snprintf(ir->c.name, sizeof(ir->c.name), "Pinnacle PCTV");
524 525 526 527 528 529 530
		if (pinnacle_remote == 0) {
			ir->get_key   = get_key_pinnacle_color;
			ir->ir_codes = ir_codes_pinnacle_color;
		} else {
			ir->get_key   = get_key_pinnacle_grey;
			ir->ir_codes = ir_codes_pinnacle_grey;
		}
531 532 533 534 535 536
		break;
	case SAA7134_BOARD_UPMOST_PURPLE_TV:
		snprintf(ir->c.name, sizeof(ir->c.name), "Purple TV");
		ir->get_key   = get_key_purpletv;
		ir->ir_codes  = ir_codes_purpletv;
		break;
537 538 539 540 541
	case SAA7134_BOARD_HAUPPAUGE_HVR1110:
		snprintf(ir->c.name, sizeof(ir->c.name), "HVR 1110");
		ir->get_key   = get_key_hvr1110;
		ir->ir_codes  = ir_codes_hauppauge_new;
		break;
542 543
	case SAA7134_BOARD_BEHOLD_607_9FM:
	case SAA7134_BOARD_BEHOLD_M6:
544 545
	case SAA7134_BOARD_BEHOLD_M63:
	case SAA7134_BOARD_BEHOLD_M6_EXTRA:
546
	case SAA7134_BOARD_BEHOLD_H6:
547 548 549 550
		snprintf(ir->c.name, sizeof(ir->c.name), "BeholdTV");
		ir->get_key   = get_key_beholdm6xx;
		ir->ir_codes  = ir_codes_behold;
		break;
551 552 553 554 555 556
	default:
		dprintk("Shouldn't get here: Unknown board %x for I2C IR?\n",dev->board);
		break;
	}

}
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599

static int saa7134_rc5_irq(struct saa7134_dev *dev)
{
	struct card_ir *ir = dev->remote;
	struct timeval tv;
	u32 gap;
	unsigned long current_jiffies, timeout;

	/* get time of bit */
	current_jiffies = jiffies;
	do_gettimeofday(&tv);

	/* avoid overflow with gap >1s */
	if (tv.tv_sec - ir->base_time.tv_sec > 1) {
		gap = 200000;
	} else {
		gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
		    tv.tv_usec - ir->base_time.tv_usec;
	}

	/* active code => add bit */
	if (ir->active) {
		/* only if in the code (otherwise spurious IRQ or timer
		   late) */
		if (ir->last_bit < 28) {
			ir->last_bit = (gap - ir_rc5_remote_gap / 2) /
			    ir_rc5_remote_gap;
			ir->code |= 1 << ir->last_bit;
		}
		/* starting new code */
	} else {
		ir->active = 1;
		ir->code = 0;
		ir->base_time = tv;
		ir->last_bit = 0;

		timeout = current_jiffies + (500 + 30 * HZ) / 1000;
		mod_timer(&ir->timer_end, timeout);
	}

	return 1;
}

L
Linus Torvalds 已提交
600 601 602 603 604
/* ----------------------------------------------------------------------
 * Local variables:
 * c-basic-offset: 8
 * End:
 */