Commit 03388ae3 authored by Oliver Endriss's avatar Oliver Endriss Committed by Linus Torvalds

[PATCH] dvb: ttpci: av7110: RC5+ remote control support

Improved remote control support for av7110-based cards:
o extended rc5 protocol, firmware >= 0x2620 required
o key-up timer slightly adjusted
o completely moved remote control code to av7110_ir.c
o support for multiple ir receivers
o for now, all av7110 cards share the same ir configuration and event device
Signed-off-by: default avatarOliver Endriss <o.endriss@gmx.de>
Signed-off-by: default avatarJohannes Stezenbach <js@linuxtv.org>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 9a7b102e
...@@ -177,9 +177,6 @@ static void init_av7110_av(struct av7110 *av7110) ...@@ -177,9 +177,6 @@ static void init_av7110_av(struct av7110 *av7110)
ret = av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right); ret = av7110_set_volume(av7110, av7110->mixer.volume_left, av7110->mixer.volume_right);
if (ret < 0) if (ret < 0)
printk("dvb-ttpci:cannot set volume :%d\n",ret); printk("dvb-ttpci:cannot set volume :%d\n",ret);
ret = av7110_setup_irc_config(av7110, 0);
if (ret < 0)
printk("dvb-ttpci:cannot setup irc config :%d\n",ret);
} }
static void recover_arm(struct av7110 *av7110) static void recover_arm(struct av7110 *av7110)
...@@ -265,60 +262,6 @@ static int arm_thread(void *data) ...@@ -265,60 +262,6 @@ static int arm_thread(void *data)
} }
/**
* Hack! we save the last av7110 ptr. This should be ok, since
* you rarely will use more then one IR control.
*
* If we want to support multiple controls we would have to do much more...
*/
int av7110_setup_irc_config(struct av7110 *av7110, u32 ir_config)
{
int ret = 0;
static struct av7110 *last;
dprintk(4, "%p\n", av7110);
if (!av7110)
av7110 = last;
else
last = av7110;
if (av7110) {
ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, SetIR, 1, ir_config);
av7110->ir_config = ir_config;
}
return ret;
}
static void (*irc_handler)(u32);
void av7110_register_irc_handler(void (*func)(u32))
{
dprintk(4, "registering %p\n", func);
irc_handler = func;
}
void av7110_unregister_irc_handler(void (*func)(u32))
{
dprintk(4, "unregistering %p\n", func);
irc_handler = NULL;
}
static void run_handlers(unsigned long ircom)
{
if (irc_handler != NULL)
(*irc_handler)((u32) ircom);
}
static DECLARE_TASKLET(irtask, run_handlers, 0);
static void IR_handle(struct av7110 *av7110, u32 ircom)
{
dprintk(4, "ircommand = %08x\n", ircom);
irtask.data = (unsigned long) ircom;
tasklet_schedule(&irtask);
}
/**************************************************************************** /****************************************************************************
* IRQ handling * IRQ handling
****************************************************************************/ ****************************************************************************/
...@@ -711,8 +654,9 @@ static void gpioirq(unsigned long data) ...@@ -711,8 +654,9 @@ static void gpioirq(unsigned long data)
return; return;
case DATA_IRCOMMAND: case DATA_IRCOMMAND:
IR_handle(av7110, if (av7110->ir_handler)
swahw32(irdebi(av7110, DEBINOSWAP, Reserved, 0, 4))); av7110->ir_handler(av7110,
swahw32(irdebi(av7110, DEBINOSWAP, Reserved, 0, 4)));
iwdebi(av7110, DEBINOSWAP, RX_BUFF, 0, 2); iwdebi(av7110, DEBINOSWAP, RX_BUFF, 0, 2);
break; break;
...@@ -2783,7 +2727,7 @@ static int av7110_attach(struct saa7146_dev* dev, struct saa7146_pci_extension_d ...@@ -2783,7 +2727,7 @@ static int av7110_attach(struct saa7146_dev* dev, struct saa7146_pci_extension_d
goto err_av7110_exit_v4l_12; goto err_av7110_exit_v4l_12;
#if defined(CONFIG_INPUT_EVDEV) || defined(CONFIG_INPUT_EVDEV_MODULE) #if defined(CONFIG_INPUT_EVDEV) || defined(CONFIG_INPUT_EVDEV_MODULE)
av7110_ir_init(); av7110_ir_init(av7110);
#endif #endif
printk(KERN_INFO "dvb-ttpci: found av7110-%d.\n", av7110_num); printk(KERN_INFO "dvb-ttpci: found av7110-%d.\n", av7110_num);
av7110_num++; av7110_num++;
...@@ -2825,6 +2769,9 @@ static int av7110_detach(struct saa7146_dev* saa) ...@@ -2825,6 +2769,9 @@ static int av7110_detach(struct saa7146_dev* saa)
struct av7110 *av7110 = saa->ext_priv; struct av7110 *av7110 = saa->ext_priv;
dprintk(4, "%p\n", av7110); dprintk(4, "%p\n", av7110);
#if defined(CONFIG_INPUT_EVDEV) || defined(CONFIG_INPUT_EVDEV_MODULE)
av7110_ir_exit(av7110);
#endif
if (budgetpatch) { if (budgetpatch) {
/* Disable RPS1 */ /* Disable RPS1 */
saa7146_write(saa, MC1, MASK_29); saa7146_write(saa, MC1, MASK_29);
...@@ -2980,9 +2927,6 @@ static int __init av7110_init(void) ...@@ -2980,9 +2927,6 @@ static int __init av7110_init(void)
static void __exit av7110_exit(void) static void __exit av7110_exit(void)
{ {
#if defined(CONFIG_INPUT_EVDEV) || defined(CONFIG_INPUT_EVDEV_MODULE)
av7110_ir_exit();
#endif
saa7146_unregister_extension(&av7110_extension); saa7146_unregister_extension(&av7110_extension);
} }
......
...@@ -228,7 +228,10 @@ struct av7110 { ...@@ -228,7 +228,10 @@ struct av7110 {
struct dvb_video_events video_events; struct dvb_video_events video_events;
video_size_t video_size; video_size_t video_size;
u32 ir_config; u32 ir_config;
u32 ir_command;
void (*ir_handler)(struct av7110 *av7110, u32 ircom);
struct tasklet_struct ir_tasklet;
/* firmware stuff */ /* firmware stuff */
unsigned char *bin_fw; unsigned char *bin_fw;
...@@ -257,12 +260,10 @@ struct av7110 { ...@@ -257,12 +260,10 @@ struct av7110 {
extern int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid, extern int ChangePIDs(struct av7110 *av7110, u16 vpid, u16 apid, u16 ttpid,
u16 subpid, u16 pcrpid); u16 subpid, u16 pcrpid);
extern void av7110_register_irc_handler(void (*func)(u32));
extern void av7110_unregister_irc_handler(void (*func)(u32));
extern int av7110_setup_irc_config (struct av7110 *av7110, u32 ir_config); extern int av7110_setup_irc_config (struct av7110 *av7110, u32 ir_config);
extern int av7110_ir_init (void); extern int av7110_ir_init(struct av7110 *av7110);
extern void av7110_ir_exit (void); extern void av7110_ir_exit(struct av7110 *av7110);
/* msp3400 i2c subaddresses */ /* msp3400 i2c subaddresses */
#define MSP_WR_DEM 0x10 #define MSP_WR_DEM 0x10
......
...@@ -7,16 +7,16 @@ ...@@ -7,16 +7,16 @@
#include <asm/bitops.h> #include <asm/bitops.h>
#include "av7110.h" #include "av7110.h"
#include "av7110_hw.h"
#define UP_TIMEOUT (HZ/4) #define UP_TIMEOUT (HZ*7/25)
/* enable ir debugging by or'ing debug with 16 */ /* enable ir debugging by or'ing debug with 16 */
static int ir_initialized; static int av_cnt;
static struct av7110 *av_list[4];
static struct input_dev input_dev; static struct input_dev input_dev;
static u32 ir_config;
static u16 key_map [256] = { static u16 key_map [256] = {
KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7, KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7,
KEY_8, KEY_9, KEY_BACK, 0, KEY_POWER, KEY_MUTE, 0, KEY_INFO, KEY_8, KEY_9, KEY_BACK, 0, KEY_POWER, KEY_MUTE, 0, KEY_INFO,
...@@ -53,8 +53,11 @@ static void av7110_emit_keyup(unsigned long data) ...@@ -53,8 +53,11 @@ static void av7110_emit_keyup(unsigned long data)
static struct timer_list keyup_timer = { .function = av7110_emit_keyup }; static struct timer_list keyup_timer = { .function = av7110_emit_keyup };
static void av7110_emit_key(u32 ircom) static void av7110_emit_key(unsigned long parm)
{ {
struct av7110 *av7110 = (struct av7110 *) parm;
u32 ir_config = av7110->ir_config;
u32 ircom = av7110->ir_command;
u8 data; u8 data;
u8 addr; u8 addr;
static u16 old_toggle = 0; static u16 old_toggle = 0;
...@@ -62,19 +65,33 @@ static void av7110_emit_key(u32 ircom) ...@@ -62,19 +65,33 @@ static void av7110_emit_key(u32 ircom)
u16 keycode; u16 keycode;
/* extract device address and data */ /* extract device address and data */
if (ir_config & 0x0001) { switch (ir_config & 0x0003) {
/* TODO RCMM: ? bits device address, 8 bits data */ case 0: /* RC5: 5 bits device address, 6 bits data */
data = ircom & 0x3f;
addr = (ircom >> 6) & 0x1f;
break;
case 1: /* RCMM: 8(?) bits device address, 8(?) bits data */
data = ircom & 0xff; data = ircom & 0xff;
addr = (ircom >> 8) & 0xff; addr = (ircom >> 8) & 0xff;
} else { break;
/* RC5: 5 bits device address, 6 bits data */
case 2: /* extended RC5: 5 bits device address, 7 bits data */
data = ircom & 0x3f; data = ircom & 0x3f;
addr = (ircom >> 6) & 0x1f; addr = (ircom >> 6) & 0x1f;
/* invert 7th data bit for backward compatibility with RC5 keymaps */
if (!(ircom & 0x1000))
data |= 0x40;
break;
default:
printk("invalid ir_config %x\n", ir_config);
return;
} }
keycode = key_map[data]; keycode = key_map[data];
dprintk(16, "#########%08x######### addr %i data 0x%02x (keycode %i)\n", dprintk(16, "code %08x -> addr %i data 0x%02x -> keycode %i\n",
ircom, addr, data, keycode); ircom, addr, data, keycode);
/* check device address (if selected) */ /* check device address (if selected) */
...@@ -87,10 +104,10 @@ static void av7110_emit_key(u32 ircom) ...@@ -87,10 +104,10 @@ static void av7110_emit_key(u32 ircom)
return; return;
} }
if (ir_config & 0x0001) if ((ir_config & 0x0003) == 1)
new_toggle = 0; /* RCMM */ new_toggle = 0; /* RCMM */
else else
new_toggle = (ircom & 0x800); /* RC5 */ new_toggle = (ircom & 0x800); /* RC5, extended RC5 */
if (timer_pending(&keyup_timer)) { if (timer_pending(&keyup_timer)) {
del_timer(&keyup_timer); del_timer(&keyup_timer);
...@@ -137,6 +154,8 @@ static int av7110_ir_write_proc(struct file *file, const char __user *buffer, ...@@ -137,6 +154,8 @@ static int av7110_ir_write_proc(struct file *file, const char __user *buffer,
{ {
char *page; char *page;
int size = 4 + 256 * sizeof(u16); int size = 4 + 256 * sizeof(u16);
u32 ir_config;
int i;
if (count < size) if (count < size)
return -EINVAL; return -EINVAL;
...@@ -153,60 +172,95 @@ static int av7110_ir_write_proc(struct file *file, const char __user *buffer, ...@@ -153,60 +172,95 @@ static int av7110_ir_write_proc(struct file *file, const char __user *buffer,
memcpy(&ir_config, page, 4); memcpy(&ir_config, page, 4);
memcpy(&key_map, page + 4, 256 * sizeof(u16)); memcpy(&key_map, page + 4, 256 * sizeof(u16));
vfree(page); vfree(page);
av7110_setup_irc_config(NULL, ir_config); if (FW_VERSION(av_list[0]->arm_app) >= 0x2620 && !(ir_config & 0x0001))
ir_config |= 0x0002; /* enable extended RC5 */
for (i = 0; i < av_cnt; i++)
av7110_setup_irc_config(av_list[i], ir_config);
input_register_keys(); input_register_keys();
return count; return count;
} }
int __init av7110_ir_init(void) int av7110_setup_irc_config(struct av7110 *av7110, u32 ir_config)
{ {
static struct proc_dir_entry *e; int ret = 0;
if (ir_initialized) dprintk(4, "%p\n", av7110);
return 0; if (av7110) {
ret = av7110_fw_cmd(av7110, COMTYPE_PIDFILTER, SetIR, 1, ir_config);
av7110->ir_config = ir_config;
}
return ret;
}
init_timer(&keyup_timer);
keyup_timer.data = 0;
input_dev.name = "DVB on-card IR receiver"; static void ir_handler(struct av7110 *av7110, u32 ircom)
{
dprintk(4, "ircommand = %08x\n", ircom);
av7110->ir_command = ircom;
tasklet_schedule(&av7110->ir_tasklet);
}
/**
* enable keys
*/
set_bit(EV_KEY, input_dev.evbit);
set_bit(EV_REP, input_dev.evbit);
input_register_keys(); int __init av7110_ir_init(struct av7110 *av7110)
{
static struct proc_dir_entry *e;
input_register_device(&input_dev); if (av_cnt >= sizeof av_list/sizeof av_list[0])
input_dev.timer.function = input_repeat_key; return -ENOSPC;
av7110_setup_irc_config(NULL, 0x0001); av7110_setup_irc_config(av7110, 0x0001);
av7110_register_irc_handler(av7110_emit_key); av_list[av_cnt++] = av7110;
e = create_proc_entry("av7110_ir", S_IFREG | S_IRUGO | S_IWUSR, NULL); if (av_cnt == 1) {
if (e) { init_timer(&keyup_timer);
e->write_proc = av7110_ir_write_proc; keyup_timer.data = 0;
e->size = 4 + 256 * sizeof(u16);
input_dev.name = "DVB on-card IR receiver";
set_bit(EV_KEY, input_dev.evbit);
set_bit(EV_REP, input_dev.evbit);
input_register_keys();
input_register_device(&input_dev);
input_dev.timer.function = input_repeat_key;
e = create_proc_entry("av7110_ir", S_IFREG | S_IRUGO | S_IWUSR, NULL);
if (e) {
e->write_proc = av7110_ir_write_proc;
e->size = 4 + 256 * sizeof(u16);
}
} }
ir_initialized = 1; tasklet_init(&av7110->ir_tasklet, av7110_emit_key, (unsigned long) av7110);
av7110->ir_handler = ir_handler;
return 0; return 0;
} }
void __exit av7110_ir_exit(void) void __exit av7110_ir_exit(struct av7110 *av7110)
{ {
if (ir_initialized == 0) int i;
if (av_cnt == 0)
return; return;
del_timer_sync(&keyup_timer);
remove_proc_entry("av7110_ir", NULL); av7110->ir_handler = NULL;
av7110_unregister_irc_handler(av7110_emit_key); tasklet_kill(&av7110->ir_tasklet);
input_unregister_device(&input_dev); for (i = 0; i < av_cnt; i++)
ir_initialized = 0; if (av_list[i] == av7110) {
av_list[i] = av_list[av_cnt-1];
av_list[av_cnt-1] = NULL;
break;
}
if (av_cnt == 1) {
del_timer_sync(&keyup_timer);
remove_proc_entry("av7110_ir", NULL);
input_unregister_device(&input_dev);
}
av_cnt--;
} }
//MODULE_AUTHOR("Holger Waechtler <holger@convergence.de>"); //MODULE_AUTHOR("Holger Waechtler <holger@convergence.de>");
//MODULE_LICENSE("GPL"); //MODULE_LICENSE("GPL");
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