Commit 2e0cc7ee authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] au0828-input: Be sure that IR is enabled at polling

When the DVB code sets the frontend, it disables the IR
INT, probably due to some hardware bug, as there's no code
there at au8522 frontend that writes on register 0xe0.

Fixing it at au8522 code is hard, as it doesn't know if the
IR is enabled or disabled, and just restoring the value of
register 0xe0 could cause other nasty effects. So, better
to add a hack at au0828-input polling interval to enable int,
if disabled.
Signed-off-by: default avatarMauro Carvalho Chehab <m.chehab@samsung.com>
parent d84fdc77
...@@ -94,14 +94,19 @@ static int au8522_rc_read(struct au0828_rc *ir, u16 reg, int val, ...@@ -94,14 +94,19 @@ static int au8522_rc_read(struct au0828_rc *ir, u16 reg, int val,
static int au8522_rc_andor(struct au0828_rc *ir, u16 reg, u8 mask, u8 value) static int au8522_rc_andor(struct au0828_rc *ir, u16 reg, u8 mask, u8 value)
{ {
int rc; int rc;
char buf; char buf, oldbuf;
rc = au8522_rc_read(ir, reg, -1, &buf, 1); rc = au8522_rc_read(ir, reg, -1, &buf, 1);
if (rc < 0) if (rc < 0)
return rc; return rc;
oldbuf = buf;
buf = (buf & ~mask) | (value & mask); buf = (buf & ~mask) | (value & mask);
/* Nothing to do, just return */
if (buf == oldbuf)
return 0;
return au8522_rc_write(ir, reg, buf); return au8522_rc_write(ir, reg, buf);
} }
...@@ -126,8 +131,11 @@ static int au0828_get_key_au8522(struct au0828_rc *ir) ...@@ -126,8 +131,11 @@ static int au0828_get_key_au8522(struct au0828_rc *ir)
/* Check IR int */ /* Check IR int */
rc = au8522_rc_read(ir, 0xe1, -1, buf, 1); rc = au8522_rc_read(ir, 0xe1, -1, buf, 1);
if (rc < 0 || !(buf[0] & (1 << 4))) if (rc < 0 || !(buf[0] & (1 << 4))) {
/* Be sure that IR is enabled */
au8522_rc_set(ir, 0xe0, 1 << 4);
return 0; return 0;
}
/* Something arrived. Get the data */ /* Something arrived. Get the data */
rc = au8522_rc_read(ir, 0xe3, 0x11, buf, sizeof(buf)); rc = au8522_rc_read(ir, 0xe3, 0x11, buf, sizeof(buf));
......
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