Commit 4b92253a authored by Devin Heitmueller's avatar Devin Heitmueller Committed by Mauro Carvalho Chehab

V4L/DVB (9628): em28xx: refactor IR support

Refactor the em28xx IR support based on the em2860/em2880 and em2874
datasheets.

Tested on the HVR-950 (em2883), Pinnacle 800e (em2883), Pinnacle 80e (em2874)
using the remote controls that came with those products.
Signed-off-by: default avatarDevin Heitmueller <devin.heitmueller@gmail.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 0a6b8a85
...@@ -592,6 +592,7 @@ struct em28xx_board em28xx_boards[] = { ...@@ -592,6 +592,7 @@ struct em28xx_board em28xx_boards[] = {
.mts_firmware = 1, .mts_firmware = 1,
.has_12mhz_i2s = 1, .has_12mhz_i2s = 1,
.has_dvb = 1, .has_dvb = 1,
.ir_codes = ir_codes_hauppauge_new,
.decoder = EM28XX_TVP5150, .decoder = EM28XX_TVP5150,
.input = { { .input = { {
.type = EM28XX_VMUX_TELEVISION, .type = EM28XX_VMUX_TELEVISION,
...@@ -615,6 +616,7 @@ struct em28xx_board em28xx_boards[] = { ...@@ -615,6 +616,7 @@ struct em28xx_board em28xx_boards[] = {
.mts_firmware = 1, .mts_firmware = 1,
.has_12mhz_i2s = 1, .has_12mhz_i2s = 1,
.has_dvb = 1, .has_dvb = 1,
.ir_codes = ir_codes_pinnacle_pctv_hd,
.decoder = EM28XX_TVP5150, .decoder = EM28XX_TVP5150,
.input = { { .input = { {
.type = EM28XX_VMUX_TELEVISION, .type = EM28XX_VMUX_TELEVISION,
...@@ -1092,6 +1094,7 @@ struct em28xx_board em28xx_boards[] = { ...@@ -1092,6 +1094,7 @@ struct em28xx_board em28xx_boards[] = {
.vchannels = 0, .vchannels = 0,
.tuner_type = TUNER_ABSENT, .tuner_type = TUNER_ABSENT,
.has_dvb = 1, .has_dvb = 1,
.ir_codes = ir_codes_pinnacle_pctv_hd,
.decoder = EM28XX_NODECODER, .decoder = EM28XX_NODECODER,
#ifdef DJH_DEBUG #ifdef DJH_DEBUG
.input = { { .input = { {
...@@ -1329,6 +1332,7 @@ static void em28xx_set_model(struct em28xx *dev) ...@@ -1329,6 +1332,7 @@ static void em28xx_set_model(struct em28xx *dev)
dev->max_range_640_480 = em28xx_boards[dev->model].max_range_640_480; dev->max_range_640_480 = em28xx_boards[dev->model].max_range_640_480;
dev->has_dvb = em28xx_boards[dev->model].has_dvb; dev->has_dvb = em28xx_boards[dev->model].has_dvb;
dev->has_snapshot_button = em28xx_boards[dev->model].has_snapshot_button; dev->has_snapshot_button = em28xx_boards[dev->model].has_snapshot_button;
dev->ir_codes = em28xx_boards[dev->model].ir_codes;
dev->valid = em28xx_boards[dev->model].valid; dev->valid = em28xx_boards[dev->model].valid;
} }
......
...@@ -52,6 +52,13 @@ MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]"); ...@@ -52,6 +52,13 @@ MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
Polling structure used by em28xx IR's Polling structure used by em28xx IR's
**********************************************************/ **********************************************************/
struct em28xx_ir_poll_result {
unsigned int toggle_bit:1;
unsigned int read_count:7;
u8 rc_address;
u8 rc_data[4]; /* 1 byte on em2860/2880, 4 on em2874 */
};
struct em28xx_IR { struct em28xx_IR {
struct em28xx *dev; struct em28xx *dev;
struct input_dev *input; struct input_dev *input;
...@@ -63,13 +70,11 @@ struct em28xx_IR { ...@@ -63,13 +70,11 @@ struct em28xx_IR {
int polling; int polling;
struct work_struct work; struct work_struct work;
struct timer_list timer; struct timer_list timer;
u32 last_gpio; unsigned int last_toggle:1;
u32 mask_keycode; unsigned int last_readcount;
u32 mask_keydown; unsigned int repeat_interval;
u32 mask_keyup;
u32 mask_repeat;
int (*get_key)(struct em28xx_IR *); int (*get_key)(struct em28xx_IR *, struct em28xx_ir_poll_result *);
}; };
/********************************************************** /**********************************************************
...@@ -162,11 +167,13 @@ int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key, ...@@ -162,11 +167,13 @@ int em28xx_get_key_pinnacle_usb_grey(struct IR_i2c *ir, u32 *ir_key,
Poll based get keycode functions Poll based get keycode functions
**********************************************************/ **********************************************************/
static int default_polling_getkey(struct em28xx_IR *ir) /* This is for the em2860/em2880 */
static int default_polling_getkey(struct em28xx_IR *ir,
struct em28xx_ir_poll_result *poll_result)
{ {
struct em28xx *dev = ir->dev; struct em28xx *dev = ir->dev;
int rc; int rc;
u8 msg[4] = { 0, 0, 0, 0 }; u8 msg[3] = { 0, 0, 0 };
/* Read key toggle, brand, and key code /* Read key toggle, brand, and key code
on registers 0x45, 0x46 and 0x47 on registers 0x45, 0x46 and 0x47
...@@ -176,7 +183,51 @@ static int default_polling_getkey(struct em28xx_IR *ir) ...@@ -176,7 +183,51 @@ static int default_polling_getkey(struct em28xx_IR *ir)
if (rc < 0) if (rc < 0)
return rc; return rc;
return (int)(le32_to_cpu(*(u32 *)msg)); /* Infrared toggle (Reg 0x45[7]) */
poll_result->toggle_bit = (msg[0] >> 7);
/* Infrared read count (Reg 0x45[6:0] */
poll_result->read_count = (msg[0] & 0x7f);
/* Remote Control Address (Reg 0x46) */
poll_result->rc_address = msg[1];
/* Remote Control Data (Reg 0x47) */
poll_result->rc_data[0] = msg[2];
return 0;
}
static int em2874_polling_getkey(struct em28xx_IR *ir,
struct em28xx_ir_poll_result *poll_result)
{
struct em28xx *dev = ir->dev;
int rc;
u8 msg[5] = { 0, 0, 0, 0, 0 };
/* Read key toggle, brand, and key code
on registers 0x51-55
*/
rc = dev->em28xx_read_reg_req_len(dev, 0, EM2874_R51_IR,
msg, sizeof(msg));
if (rc < 0)
return rc;
/* Infrared toggle (Reg 0x51[7]) */
poll_result->toggle_bit = (msg[0] >> 7);
/* Infrared read count (Reg 0x51[6:0] */
poll_result->read_count = (msg[0] & 0x7f);
/* Remote Control Address (Reg 0x52) */
poll_result->rc_address = msg[1];
/* Remote Control Data (Reg 0x53-55) */
poll_result->rc_data[0] = msg[2];
poll_result->rc_data[1] = msg[3];
poll_result->rc_data[2] = msg[4];
return 0;
} }
/********************************************************** /**********************************************************
...@@ -185,52 +236,60 @@ static int default_polling_getkey(struct em28xx_IR *ir) ...@@ -185,52 +236,60 @@ static int default_polling_getkey(struct em28xx_IR *ir)
static void em28xx_ir_handle_key(struct em28xx_IR *ir) static void em28xx_ir_handle_key(struct em28xx_IR *ir)
{ {
int gpio; int result;
u32 data; int do_sendkey = 0;
struct em28xx_ir_poll_result poll_result;
/* read gpio value */
gpio = ir->get_key(ir); /* read the registers containing the IR status */
if (gpio < 0) result = ir->get_key(ir, &poll_result);
return; if (result < 0) {
dprintk("ir->get_key() failed %d\n", result);
if (gpio == ir->last_gpio)
return; return;
}
ir->last_gpio = gpio; dprintk("ir->get_key result tb=%02x rc=%02x lr=%02x data=%02x\n",
poll_result.toggle_bit, poll_result.read_count,
/* extract data */ ir->last_readcount, poll_result.rc_data[0]);
data = ir_extract_bits(gpio, ir->mask_keycode);
dprintk("irq gpio=0x%x code=%d | poll%s%s\n", if (ir->dev->chip_id == CHIP_ID_EM2874) {
gpio, data, /* The em2874 clears the readcount field every time the
(gpio & ir->mask_keydown) ? " down" : "", register is read. The em2860/2880 datasheet says that it
(gpio & ir->mask_keyup) ? " up" : ""); is supposed to clear the readcount, but it doesn't. So with
the em2874, we are looking for a non-zero read count as
/* Generate keyup/keydown events */ opposed to a readcount that is incrementing */
if (ir->mask_keydown) { ir->last_readcount = 0;
/* bit set on keydown */ }
if (gpio & ir->mask_keydown)
ir_input_keydown(ir->input, &ir->ir, data, data);
else
ir_input_nokey(ir->input, &ir->ir);
} else if (ir->mask_keyup) {
/* bit cleared on keydown */
if (!(gpio & ir->mask_keyup))
ir_input_keydown(ir->input, &ir->ir, data, data);
else
ir_input_nokey(ir->input, &ir->ir);
} else if (ir->mask_repeat) {
int count = ir->mask_repeat & gpio;
/* Avoid keyboard bouncing */ if (poll_result.read_count == 0) {
if ((count == 1) || (count >= 5)) { /* The button has not been pressed since the last read */
ir_input_keydown(ir->input, &ir->ir, data, data); } else if (ir->last_toggle != poll_result.toggle_bit) {
ir_input_nokey(ir->input, &ir->ir); /* A button has been pressed */
dprintk("button has been pressed\n");
ir->last_toggle = poll_result.toggle_bit;
ir->repeat_interval = 0;
do_sendkey = 1;
} else if (poll_result.toggle_bit == ir->last_toggle &&
poll_result.read_count > 0 &&
poll_result.read_count != ir->last_readcount) {
/* The button is still being held down */
dprintk("button being held down\n");
/* Debouncer for first keypress */
if (ir->repeat_interval++ > 9) {
/* Start repeating after 1 second */
do_sendkey = 1;
}
} }
} else {
/* can't distinguish keydown/up :-/ */ if (do_sendkey) {
ir_input_keydown(ir->input, &ir->ir, data, data); dprintk("sending keypress\n");
ir_input_keydown(ir->input, &ir->ir, poll_result.rc_data[0],
poll_result.rc_data[0]);
ir_input_nokey(ir->input, &ir->ir); ir_input_nokey(ir->input, &ir->ir);
} }
ir->last_readcount = poll_result.read_count;
return;
} }
static void ir_timer(unsigned long data) static void ir_timer(unsigned long data)
...@@ -265,10 +324,14 @@ int em28xx_ir_init(struct em28xx *dev) ...@@ -265,10 +324,14 @@ int em28xx_ir_init(struct em28xx *dev)
{ {
struct em28xx_IR *ir; struct em28xx_IR *ir;
struct input_dev *input_dev; struct input_dev *input_dev;
IR_KEYTAB_TYPE *ir_codes = NULL; u8 ir_config;
int ir_type = IR_TYPE_OTHER;
int err = -ENOMEM; int err = -ENOMEM;
if (dev->ir_codes == NULL) {
/* No remote control support */
return 0;
}
ir = kzalloc(sizeof(*ir), GFP_KERNEL); ir = kzalloc(sizeof(*ir), GFP_KERNEL);
input_dev = input_allocate_device(); input_dev = input_allocate_device();
if (!ir || !input_dev) if (!ir || !input_dev)
...@@ -276,25 +339,26 @@ int em28xx_ir_init(struct em28xx *dev) ...@@ -276,25 +339,26 @@ int em28xx_ir_init(struct em28xx *dev)
ir->input = input_dev; ir->input = input_dev;
/* */ /* Setup the proper handler based on the chip */
switch (dev->chip_id) {
case CHIP_ID_EM2860:
case CHIP_ID_EM2883:
ir->get_key = default_polling_getkey; ir->get_key = default_polling_getkey;
ir->polling = 50; /* ms */
/* detect & configure */
switch (dev->model) {
case EM2883_BOARD_HAUPPAUGE_WINTV_HVR_950:
ir_type = IR_TYPE_OTHER;
ir_codes = ir_codes_hauppauge_new;
ir->mask_keycode = 0x007f0000;
ir->mask_repeat = 0x0000007f;
break; break;
} case CHIP_ID_EM2874:
ir->get_key = em2874_polling_getkey;
if (NULL == ir_codes) { /* For now we only support RC5, so enable it */
err = -ENODEV; ir_config = EM2874_IR_RC5;
em28xx_write_regs(dev, EM2874_R50_IR_CONFIG, &ir_config, 1);
break;
default:
printk("Unrecognized em28xx chip id: IR not supported\n");
goto err_out_free; goto err_out_free;
} }
/* This is how often we ask the chip for IR information */
ir->polling = 100; /* ms */
/* init input device */ /* init input device */
snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)", snprintf(ir->name, sizeof(ir->name), "em28xx IR (%s)",
dev->name); dev->name);
...@@ -302,7 +366,7 @@ int em28xx_ir_init(struct em28xx *dev) ...@@ -302,7 +366,7 @@ int em28xx_ir_init(struct em28xx *dev)
usb_make_path(dev->udev, ir->phys, sizeof(ir->phys)); usb_make_path(dev->udev, ir->phys, sizeof(ir->phys));
strlcat(ir->phys, "/input0", sizeof(ir->phys)); strlcat(ir->phys, "/input0", sizeof(ir->phys));
ir_input_init(input_dev, &ir->ir, ir_type, ir_codes); ir_input_init(input_dev, &ir->ir, IR_TYPE_OTHER, dev->ir_codes);
input_dev->name = ir->name; input_dev->name = ir->name;
input_dev->phys = ir->phys; input_dev->phys = ir->phys;
input_dev->id.bustype = BUS_USB; input_dev->id.bustype = BUS_USB;
...@@ -315,10 +379,6 @@ int em28xx_ir_init(struct em28xx *dev) ...@@ -315,10 +379,6 @@ int em28xx_ir_init(struct em28xx *dev)
ir->dev = dev; ir->dev = dev;
dev->ir = ir; dev->ir = ir;
/* Get the current key status, to avoid adding an
unexistent key code */
ir->last_gpio = ir->get_key(ir);
em28xx_ir_start(ir); em28xx_ir_start(ir);
/* all done */ /* all done */
......
...@@ -84,9 +84,17 @@ ...@@ -84,9 +84,17 @@
#define EM28XX_R14_VIDEO_AC97 0x14 #define EM28XX_R14_VIDEO_AC97 0x14
/* em2874 registers */ /* em2874 registers */
#define EM2874_R50_IR_CONFIG 0x50
#define EM2874_R51_IR 0x51
#define EM2874_R5F_TS_ENABLE 0x5f #define EM2874_R5F_TS_ENABLE 0x5f
#define EM2874_R80_GPIO 0x80 #define EM2874_R80_GPIO 0x80
/* em2874 IR config register (0x50) */
#define EM2874_IR_NEC 0x00
#define EM2874_IR_RC5 0x04
#define EM2874_IR_RC5_MODE_0 0x08
#define EM2874_IR_RC5_MODE_6A 0x0b
/* em2874 Transport Stream Enable Register (0x5f) */ /* em2874 Transport Stream Enable Register (0x5f) */
#define EM2874_TS1_CAPTURE_ENABLE (1 << 0) #define EM2874_TS1_CAPTURE_ENABLE (1 << 0)
#define EM2874_TS1_FILTER_ENABLE (1 << 1) #define EM2874_TS1_FILTER_ENABLE (1 << 1)
......
...@@ -305,6 +305,7 @@ struct em28xx_board { ...@@ -305,6 +305,7 @@ struct em28xx_board {
struct em28xx_input input[MAX_EM28XX_INPUT]; struct em28xx_input input[MAX_EM28XX_INPUT];
struct em28xx_input radio; struct em28xx_input radio;
IR_KEYTAB_TYPE *ir_codes;
}; };
struct em28xx_eeprom { struct em28xx_eeprom {
...@@ -481,6 +482,9 @@ struct em28xx { ...@@ -481,6 +482,9 @@ struct em28xx {
/* Caches GPO and GPIO registers */ /* Caches GPO and GPIO registers */
unsigned char reg_gpo, reg_gpio; unsigned char reg_gpo, reg_gpio;
/* Infrared remote control support */
IR_KEYTAB_TYPE *ir_codes;
/* Snapshot button */ /* Snapshot button */
char snapshot_button_path[30]; /* path of the input dev */ char snapshot_button_path[30]; /* path of the input dev */
struct input_dev *sbutton_input_dev; struct input_dev *sbutton_input_dev;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment