* lmedm04 NEC scancode question
@ 2014-03-28 0:38 David Härdeman
2014-03-30 18:18 ` Malcolm Priestley
0 siblings, 1 reply; 3+ messages in thread
From: David Härdeman @ 2014-03-28 0:38 UTC (permalink / raw)
To: tvboxspy; +Cc: linux-media
Hi Malcolm,
I'm trying to make sure that the extended NEC parsing is consistent
across drivers and I have a question regarding
drivers/media/usb/dvb-usb-v2/lmedm04.c
In commit 616a4b83 you changed the scancode from something like this:
ibuf[2] << 24 | ibuf[3] << 16 | ibuf[4] << 8 | ibuf[5]
into:
if ((ibuf[4] + ibuf[5]) == 0xff) {
key = ibuf[5];
key += (ibuf[3] > 0)
? (ibuf[3] ^ 0xff) << 8 : 0;
key += (ibuf[2] ^ 0xff) << 16;
which can be written as:
(ibuf[2] ^ 0xff) << 16 |
(ibuf[3] > 0) ? (ibuf[3] ^ 0xff) << 8 : 0 |
ibuf[5]
At the same time the keymap was changed from (one example from each
type):
0xef12ba45 = KEY_0
0xff40ea15 = KEY_0
0xff00e31c = KEY_0
into:
0x10ed45 = KEY_0 (0x10ed = ~0xef12; 0x45 = ~0xba)
0xbf15 = KEY_0 (0xbf = 0x00bf = ~0xff40; 0x15 = ~0xea)
0x1c = KEY_0 (0x1c = 0x001c; this is a NEC16 coding?)
I am assuming (given the ^ 0xff) that the hardware sends inverted bytes?
And that the reason ibuf[5] does not need ^ 0xff is that it already is
the inverted command (i.e. ibuf[5] == ~ibuf[4]).
To put it differently:
ibuf[2] = ~addr = not_addr;
ibuf[3] = ~not_addr = addr;
ibuf[4] = ~cmd = not_cmd;
ibuf[5] = ~not_cmd = cmd;
And the scancode can then be understood as:
addr << 16 | not_addr << 8 | cmd
Except for when addr = 0x00 in which case the scancode is simply NEC16:
0x00 << 8 | cmd
Is my interpretation correct?
--
David Härdeman
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: lmedm04 NEC scancode question 2014-03-28 0:38 lmedm04 NEC scancode question David Härdeman @ 2014-03-30 18:18 ` Malcolm Priestley 2014-03-30 20:59 ` David Härdeman 0 siblings, 1 reply; 3+ messages in thread From: Malcolm Priestley @ 2014-03-30 18:18 UTC (permalink / raw) To: David Härdeman; +Cc: linux-media On 28/03/14 00:38, David Härdeman wrote: > Hi Malcolm, > Hi David > I'm trying to make sure that the extended NEC parsing is consistent > across drivers and I have a question regarding > drivers/media/usb/dvb-usb-v2/lmedm04.c > > In commit 616a4b83 you changed the scancode from something like this: > > ibuf[2] << 24 | ibuf[3] << 16 | ibuf[4] << 8 | ibuf[5] > > into: > > if ((ibuf[4] + ibuf[5]) == 0xff) { > key = ibuf[5]; > key += (ibuf[3] > 0) > ? (ibuf[3] ^ 0xff) << 8 : 0; > key += (ibuf[2] ^ 0xff) << 16; > > which can be written as: > > (ibuf[2] ^ 0xff) << 16 | > (ibuf[3] > 0) ? (ibuf[3] ^ 0xff) << 8 : 0 | > ibuf[5] > > At the same time the keymap was changed from (one example from each > type): > > 0xef12ba45 = KEY_0 > 0xff40ea15 = KEY_0 > 0xff00e31c = KEY_0 These original key maps need to restored for 32 bit. > > into: > > 0x10ed45 = KEY_0 (0x10ed = ~0xef12; 0x45 = ~0xba) > 0xbf15 = KEY_0 (0xbf = 0x00bf = ~0xff40; 0x15 = ~0xea) > 0x1c = KEY_0 (0x1c = 0x001c; this is a NEC16 coding?) > Bits 8~23 are inverted on the key map because they are shifted >> 8. Bits 8~15 are removed from the scan code. > I am assuming (given the ^ 0xff) that the hardware sends inverted bytes? > And that the reason ibuf[5] does not need ^ 0xff is that it already is > the inverted command (i.e. ibuf[5] == ~ibuf[4]). > > To put it differently: > > ibuf[2] = ~addr = not_addr; > ibuf[3] = ~not_addr = addr; > ibuf[4] = ~cmd = not_cmd; > ibuf[5] = ~not_cmd = cmd; > > And the scancode can then be understood as: > > addr << 16 | not_addr << 8 | cmd > > Except for when addr = 0x00 in which case the scancode is simply NEC16: > > 0x00 << 8 | cmd > > Is my interpretation correct? > No inverting. At the time of the patch I couldn't get the 32 bit code to work correctly on rc_core so it was assumed to be 24 bit. I have tested the patch series... Is there a patch missing? I get build error from ati_remote.c and imon.c error: too few arguments to function 'rc_g_keycode_from_table' Anyway, I removed the errors. Just needs the inverting removed and the original 32 bit key maps to work. Regards Malcolm ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: lmedm04 NEC scancode question 2014-03-30 18:18 ` Malcolm Priestley @ 2014-03-30 20:59 ` David Härdeman 0 siblings, 0 replies; 3+ messages in thread From: David Härdeman @ 2014-03-30 20:59 UTC (permalink / raw) To: Malcolm Priestley; +Cc: linux-media On Sun, Mar 30, 2014 at 07:18:20PM +0100, Malcolm Priestley wrote: >On 28/03/14 00:38, David Härdeman wrote: >>I'm trying to make sure that the extended NEC parsing is consistent >>across drivers and I have a question regarding >>drivers/media/usb/dvb-usb-v2/lmedm04.c >> >>In commit 616a4b83 you changed the scancode from something like this: >> >> ibuf[2] << 24 | ibuf[3] << 16 | ibuf[4] << 8 | ibuf[5] >> >>into: >> >> if ((ibuf[4] + ibuf[5]) == 0xff) { >> key = ibuf[5]; >> key += (ibuf[3] > 0) >> ? (ibuf[3] ^ 0xff) << 8 : 0; >> key += (ibuf[2] ^ 0xff) << 16; >> >>which can be written as: >> >> (ibuf[2] ^ 0xff) << 16 | >> (ibuf[3] > 0) ? (ibuf[3] ^ 0xff) << 8 : 0 | >> ibuf[5] >> >>At the same time the keymap was changed from (one example from each >>type): >> >> 0xef12ba45 = KEY_0 >> 0xff40ea15 = KEY_0 >> 0xff00e31c = KEY_0 >These original key maps need to restored for 32 bit. With my patch series, NEC16 keymaps are still ok, they'll get automagically translated to their NEC32 counterparts when they are loaded into the in-memory scancode table (by treating any scancode >= 0xffff as NEC16, scancode >= 0xffffff as NECX and scancodes >= 0xffffff as NEC32). For example, a keymap with a scancode of 0x1122 is interpreted as a NEC16 scancode with 0x11 as the address and 0x22 as the command, which will be stored in the in-memory table as 0x11ee22dd (NEC16 is 0xAACC and translated into 0xAAÂÂCCĈĈ as NEC32). >>into: >> >> 0x10ed45 = KEY_0 (0x10ed = ~0xef12; 0x45 = ~0xba) >> 0xbf15 = KEY_0 (0xbf = 0x00bf = ~0xff40; 0x15 = ~0xea) >> 0x1c = KEY_0 (0x1c = 0x001c; this is a NEC16 coding?) >> >Bits 8~23 are inverted on the key map because they are shifted >> 8. > >Bits 8~15 are removed from the scan code. Not sure I follow. Bytes 2 and 4 are usually inverted in NEC (if it's the oldschool NEC16 protocol), why would bits 8-23 be inverted? >>I am assuming (given the ^ 0xff) that the hardware sends inverted bytes? >>And that the reason ibuf[5] does not need ^ 0xff is that it already is >>the inverted command (i.e. ibuf[5] == ~ibuf[4]). >> >>To put it differently: >> >> ibuf[2] = ~addr = not_addr; >> ibuf[3] = ~not_addr = addr; >> ibuf[4] = ~cmd = not_cmd; >> ibuf[5] = ~not_cmd = cmd; >> >>And the scancode can then be understood as: >> >> addr << 16 | not_addr << 8 | cmd >> >>Except for when addr = 0x00 in which case the scancode is simply NEC16: >> >> 0x00 << 8 | cmd >> >>Is my interpretation correct? >> >No inverting. > >At the time of the patch I couldn't get the 32 bit code to work correctly on >rc_core so it was assumed to be 24 bit. > >I have tested the patch series... > >Is there a patch missing? I get build error from ati_remote.c and >imon.c Mea culpa, I used a .config with some drivers disabled, I've regenerated the patch series to take ati_remote.c and imon.c into account as well, I'll post a new patch series as soon as I've understood the lmedm04.c scancode parsing... >error: too few arguments to function 'rc_g_keycode_from_table' > >Anyway, I removed the errors. For your testing purposes you could just disable those two drivers. >Just needs the inverting removed and the original 32 bit key maps to work. I'd prefer to have the scancode entries that are NEC16 in NEC16 notation if possible. If I understand you correctly, ibuf[2] - ibuf[5] corresponds to bytes 1 - 4 of the 32 bit NEC scancode without any inversion/conversion, right? If so, the scancodes would be for example: Type1: 0xef12ba45 -> NECX with addr 0xef12 and cmd 0x45 = 0xef1245 Type2: 0xff40ea15 -> NECX with addr 0xff40 and cmd 0x15 = 0xff4015 Type3: 0xff00e31c -> NEC16 with addr 0xff and cmd 0x1c = 0xff1c (is that really addr 0xff and not 0x00? if it is 0x00, then that would indicate a different byte order than simply ibuf[2] to ibuf[5]?) Thanks for your input. -- David Härdeman ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-30 20:59 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-03-28 0:38 lmedm04 NEC scancode question David Härdeman 2014-03-30 18:18 ` Malcolm Priestley 2014-03-30 20:59 ` David Härdeman
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.