All of lore.kernel.org
 help / color / mirror / Atom feed
From: "David Härdeman" <david@hardeman.nu>
To: Mauro Carvalho Chehab <m.chehab@samsung.com>
Cc: James Hogan <james.hogan@imgtec.com>, linux-media@vger.kernel.org
Subject: Re: [PATCH 10/11] [RFC] rc-core: use the full 32 bits for NEC  scancodes
Date: Mon, 31 Mar 2014 14:58:10 +0200	[thread overview]
Message-ID: <6b18c58fc8eef47b081583ab316bb000@hardeman.nu> (raw)
In-Reply-To: <20140331091433.0f232179@samsung.com>

On 2014-03-31 14:14, Mauro Carvalho Chehab wrote:
> Em Mon, 31 Mar 2014 12:19:10 +0200
> David Härdeman <david@hardeman.nu> escreveu:
>> On 2014-03-31 11:44, James Hogan wrote:
>> > On 29/03/14 16:11, David Härdeman wrote:
>> >> Using the full 32 bits for all kinds of NEC scancodes simplifies
>> >> rc-core
>> >> and the nec decoder without any loss of functionality.
>> >>
>> >> In order to maintain backwards compatibility, some heuristics are
>> >> added
>> >> in rc-main.c to convert scancodes to NEC32 as necessary.
>> >>
>> >> I plan to introduce a different ioctl later which makes the protocol
>> >> explicit (and which expects all NEC scancodes to be 32 bit, thereby
>> >> removing the need for guesswork).
>> >>
>> >> Signed-off-by: David Härdeman <david@hardeman.nu>
>> >> ---
>> >> diff --git a/drivers/media/rc/img-ir/img-ir-nec.c
>> >> b/drivers/media/rc/img-ir/img-ir-nec.c
>> >> index 40ee844..133ea45 100644
>> >> --- a/drivers/media/rc/img-ir/img-ir-nec.c
>> >> +++ b/drivers/media/rc/img-ir/img-ir-nec.c
>> >> @@ -5,42 +5,20 @@
>> >>   */
>> >>
>> >>  #include "img-ir-hw.h"
>> >> -#include <linux/bitrev.h>
>> >>
>> >>  /* Convert NEC data to a scancode */
>> >>  static int img_ir_nec_scancode(int len, u64 raw, enum rc_type
>> >> *protocol,
>> >>  			       u32 *scancode, u64 enabled_protocols)
>> >>  {
>> >> -	unsigned int addr, addr_inv, data, data_inv;
>> >>  	/* a repeat code has no data */
>> >>  	if (!len)
>> >>  		return IMG_IR_REPEATCODE;
>> >> +
>> >>  	if (len != 32)
>> >>  		return -EINVAL;
>> >> -	/* raw encoding: ddDDaaAA */
>> >> -	addr     = (raw >>  0) & 0xff;
>> >> -	addr_inv = (raw >>  8) & 0xff;
>> >> -	data     = (raw >> 16) & 0xff;
>> >> -	data_inv = (raw >> 24) & 0xff;
>> >> -	if ((data_inv ^ data) != 0xff) {
>> >> -		/* 32-bit NEC (used by Apple and TiVo remotes) */
>> >> -		/* scan encoding: AAaaDDdd (LSBit first) */
>> >> -		*scancode = bitrev8(addr)     << 24 |
>> >> -			    bitrev8(addr_inv) << 16 |
>> >> -			    bitrev8(data)     <<  8 |
>> >> -			    bitrev8(data_inv);
>> >> -	} else if ((addr_inv ^ addr) != 0xff) {
>> >> -		/* Extended NEC */
>> >> -		/* scan encoding: AAaaDD */
>> >> -		*scancode = addr     << 16 |
>> >> -			    addr_inv <<  8 |
>> >> -			    data;
>> >> -	} else {
>> >> -		/* Normal NEC */
>> >> -		/* scan encoding: AADD */
>> >> -		*scancode = addr << 8 |
>> >> -			    data;
>> >> -	}
>> >> +
>> >> +	/* raw encoding : ddDDaaAA -> scan encoding: AAaaDDdd */
>> >> +	*scancode = swab32((u32)raw);
>> >
>> > What's the point of the byte swapping?
>> >
>> > Surely the most natural NEC encoding would just treat it as a single
>> > 32-bit (LSBit first) field rather than 4 8-bit fields that needs
>> > swapping.
>> 
>> Thanks for having a look at the patches, I agree with your comments on
>> the other patches (and I have to respin some of them because I missed
>> two drivers), but the comments to this patch confuses me a bit.
>> 
>> That the NEC data is transmitted as 32 bits encoded with LSB bit order
>> within each byte is AFAIK just about the only thing that all
>> sources/documentation of the protocal can agree on (so bitrev:ing the
>> bits within each byte makes sense, unless the hardware has done it
>> already).
>> 
>> As for the byte order, AAaaDDdd corresponds to the transmission order
>> and seems to be what most drivers expect/use for their RX data.
>> 
>> Are you suggesting that rc-core should standardize on ddDDaaAA order?
> 
> 
> Let's better name this, as AAaaDDdd implies that:
> 	aa = ~AA
> 	dd = ~DD
> As described at the NEC protocol.

I really don't think James and I had any trouble understanding each 
other :)

> The 24 or 32 bits variation is actually a violation of the NEC 
> protocol.

Violation is a misnomer. NEC created the 24 bit version, it's an 
extension. Many companies (such as your employer :)) have created 
further variations.

> What some IRs actually provide is:
> 	xxyyADDdd (24 bits NEC)
> 	where:
> 		Address = yyxx
> 		Data = DD
> 
> As described as "Extended NEC protocol" at:
> 	http://www.sbprojects.com/knowledge/ir/nec.php
> 
> or:
> 	xxyyADDzz (32 bits NEC)
> 	where:
> 		Address = zzxxyy
> 		Data = DD

No need to explain the protocol to me.

> Also, currently, there's just one IR table with 32 bits nec:
> rc-tivo.c, used by the mceusb driver.

Yes, I know.

> Well, changing the NEC decoders to always send a 32 bits code has
> several issues:
> 
> 1) It makes the normal NEC protocol as an exception, and not as a
>    rule;

It's not an exception. I just makes all 32 bits explicit.

And the lack of that explicit information currently makes the scancode 
ambiguous. Right now if I give you a NEC scancode of 0xff00 (like we 
give to userspace with the EV_SCAN event), you can't tell what it 
means...it could, for example, be a 32 bit code of 0x0000ff00...

> 2) It breaks all in-kernel tables for 16 bits and 24 bits NEC.
>    As already said, currently, there's just one driver using 32
>    bits NEC, and just for one IR type (RC_MAP_TIVO);

No, the proposed patch doesn't break all in-kernel tables. The in-kernel 
tables are converted on the fly to NEC32 when loaded.

> 3) It causes regressions to userspace, as userspace tables won't
>    work anymore;

I know it may cause troubles for userspace, however:

a) You've already accepted patches that change the scancode format of 
the NEC decoder within the last few weeks so you've already set the 
stage for the same kind of trouble (even if I agree with James on parts 
of that patch)

b) The current code is broken as well...using the same remote will 
generate different scancodes depending on the driver (even if the old 
and new hardware *can* receive the full scancode), meaning that your 
keytable will suddenly stop working if you change HW. That's bad.

> 4) Your to_nec32() macro will break support for 24-bits IRs
>    shipped with devices that can only provide 16 bits.
> 
> In order to explain (4), let's see what happens when a 24-bits
> NEC code is received by a in-hardware decoder.
> 
> There are a wide range of Chinese IR devices shipped with widely
> used media hardware that produce a 24-bit NEC code. One of the
> most popular of such manufacturers use the address = 0x866b
> (btw, the get_key_beholdm6xx() function at saa7134 driver seems
> to be wrong, as the keytables for behold device has the address of
> this vendor mapped as 0x6b86).

I know, I've already identified and fixed that problem in a separate 
patch that's posted to the list. And it will also break out-of-kernel 
user-defined keymaps. Any inconsistency is a no-win situation. And we 
*do* have inconsistencies right now.

> The way those codes are handled inside each in-hardware NEC
> decoder are different. I've seen all those alternatives:
> 
> a) the full 24-bits code is received by the driver;
> b) some hardware will simply discard the MSB of the address;
> c) a few hardware will discard the entire keycode, as the
>    checksum bytes won't match.

I know there's a lot of variety, another example is drivers that discard 
(possibly after matching address) everything but the "command" part of 
the scancode. That should not be used as an excuse not to try to make 
the behavior as consistent as possible. After all...that's the point of 
a common API.

> The devices from the 0x866b manufacturer is used by a wide range
> of devices that can do either (a) or (b).
> 
> Well, as the to_nec32() doesn't know the original keycode, it
> would map an address like 0x866b as 0x946b, with is wrong, and
> won't match the corresponding NEC table.

Yes, if the hardware throws away information, rc-core will sometime 
generate a scancode which does not match the real one.

As you say:

if the actual remote control transmits: 0x866b01fe
and the hardware truncates it to:       0x..6b01fe
then rc-core would convert back to:     0x946b01fe

And that could be fixed with a scanmask for that driver (0xffffff)?

(We could also expose the scanmask to userspace so it knows which part 
of the scancode it can trust...)

> Due to (3) (it causes userspace regressions), we can't apply
> such changes.

I know Linus' policy with regard to userspace regressions, but see 
above.

Regards,
David

  reply	other threads:[~2014-03-31 12:58 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-03-29 16:10 [PATCH 00/11] rc-core: My current patch queue David Härdeman
2014-03-29 16:10 ` [PATCH 01/11] bt8xx: fixup RC5 decoding David Härdeman
2014-03-29 16:10 ` [PATCH 02/11] rc-core: improve ir-kbd-i2c get_key functions David Härdeman
2014-03-29 16:11 ` [PATCH 03/11] rc-core: document the protocol type David Härdeman
2014-03-31  9:54   ` James Hogan
2014-03-31 19:39     ` David Härdeman
2014-03-29 16:11 ` [PATCH 04/11] rc-core: do not change 32bit NEC scancode format for now David Härdeman
2014-03-31  9:09   ` James Hogan
2014-03-29 16:11 ` [PATCH 05/11] rc-core: split dev->s_filter David Härdeman
2014-04-03 23:27   ` James Hogan
2014-03-29 16:11 ` [PATCH 06/11] rc-core: remove generic scancode filter David Härdeman
2014-03-31  9:29   ` James Hogan
2014-03-31 19:38     ` David Härdeman
2014-03-31 22:01       ` James Hogan
2014-03-29 16:11 ` [PATCH 07/11] dib0700: NEC scancode cleanup David Härdeman
2014-03-29 16:11 ` [PATCH 08/11] lmedm04: " David Härdeman
2014-03-29 16:11 ` [PATCH 09/11] saa7134: NEC scancode fix David Härdeman
2014-03-29 16:11 ` [PATCH 10/11] [RFC] rc-core: use the full 32 bits for NEC scancodes David Härdeman
2014-03-31  9:44   ` James Hogan
2014-03-31 10:19     ` David Härdeman
2014-03-31 10:56       ` James Hogan
2014-03-31 13:22         ` David Härdeman
2014-03-31 14:06           ` James Hogan
2014-03-31 15:26           ` Mauro Carvalho Chehab
2014-03-31 16:47             ` David Härdeman
2014-03-31 12:14       ` Mauro Carvalho Chehab
2014-03-31 12:58         ` David Härdeman [this message]
2014-03-31 13:15           ` Mauro Carvalho Chehab
2014-03-31 13:54             ` David Härdeman
2014-03-29 16:11 ` [PATCH 11/11] [RFC] rc-core: don't throw away protocol information David Härdeman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6b18c58fc8eef47b081583ab316bb000@hardeman.nu \
    --to=david@hardeman.nu \
    --cc=james.hogan@imgtec.com \
    --cc=linux-media@vger.kernel.org \
    --cc=m.chehab@samsung.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.