1 /* ir-xmp-decoder.c - handle XMP IR Pulse/Space protocol
3 * Copyright (C) 2014 by Marcel Mol
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation version 2 of the License.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * - Based on info from http://www.hifi-remote.com
15 * - Ignore Toggle=9 frames
16 * - Ignore XMP-1 XMP-2 difference, always store 16 bit OBC
19 #include <linux/bitrev.h>
20 #include <linux/module.h>
21 #include "rc-core-priv.h"
23 #define XMP_UNIT 136000 /* ns */
24 #define XMP_LEADER 210000 /* ns */
25 #define XMP_NIBBLE_PREFIX 760000 /* ns */
26 #define XMP_HALFFRAME_SPACE 13800000 /* ns */
27 #define XMP_TRAILER_SPACE 20000000 /* should be 80ms but not all dureation supliers can go that high */
36 * ir_xmp_decode() - Decode one XMP pulse or space
37 * @dev: the struct rc_dev descriptor of the device
38 * @ev: the struct ir_raw_event descriptor of the pulse/space
40 * This function returns -EINVAL if the pulse violates the state machine
42 static int ir_xmp_decode(struct rc_dev
*dev
, struct ir_raw_event ev
)
44 struct xmp_dec
*data
= &dev
->raw
->xmp
;
46 if (!is_timing_event(ev
)) {
48 data
->state
= STATE_INACTIVE
;
52 IR_dprintk(2, "XMP decode started at state %d %d (%uus %s)\n",
53 data
->state
, data
->count
, TO_US(ev
.duration
), TO_STR(ev
.pulse
));
55 switch (data
->state
) {
61 if (eq_margin(ev
.duration
, XMP_LEADER
, XMP_UNIT
/ 2)) {
63 data
->state
= STATE_NIBBLE_SPACE
;
68 case STATE_LEADER_PULSE
:
72 if (eq_margin(ev
.duration
, XMP_LEADER
, XMP_UNIT
/ 2))
73 data
->state
= STATE_NIBBLE_SPACE
;
77 case STATE_NIBBLE_SPACE
:
81 if (geq_margin(ev
.duration
, XMP_TRAILER_SPACE
, XMP_NIBBLE_PREFIX
)) {
83 u8 addr
, subaddr
, subaddr2
, toggle
, oem
, obc1
, obc2
, sum1
, sum2
;
87 if (data
->count
!= 16) {
88 IR_dprintk(2, "received TRAILER period at index %d: %u\n",
89 data
->count
, ev
.duration
);
90 data
->state
= STATE_INACTIVE
;
96 * the 4th nibble should be 15 so base the divider on this
97 * to transform durations into nibbles. Substract 2000 from
98 * the divider to compensate for fluctuations in the signal
100 divider
= (n
[3] - XMP_NIBBLE_PREFIX
) / 15 - 2000;
102 IR_dprintk(2, "divider to small %d.\n", divider
);
103 data
->state
= STATE_INACTIVE
;
107 /* convert to nibbles and do some sanity checks */
108 for (i
= 0; i
< 16; i
++)
109 n
[i
] = (n
[i
] - XMP_NIBBLE_PREFIX
) / divider
;
110 sum1
= (15 + n
[0] + n
[1] + n
[2] + n
[3] +
111 n
[4] + n
[5] + n
[6] + n
[7]) % 16;
112 sum2
= (15 + n
[8] + n
[9] + n
[10] + n
[11] +
113 n
[12] + n
[13] + n
[14] + n
[15]) % 16;
115 if (sum1
!= 15 || sum2
!= 15) {
116 IR_dprintk(2, "checksum errors sum1=0x%X sum2=0x%X\n",
118 data
->state
= STATE_INACTIVE
;
122 subaddr
= n
[0] << 4 | n
[2];
123 subaddr2
= n
[8] << 4 | n
[11];
124 oem
= n
[4] << 4 | n
[5];
125 addr
= n
[6] << 4 | n
[7];
127 obc1
= n
[12] << 4 | n
[13];
128 obc2
= n
[14] << 4 | n
[15];
129 if (subaddr
!= subaddr2
) {
130 IR_dprintk(2, "subaddress nibbles mismatch 0x%02X != 0x%02X\n",
132 data
->state
= STATE_INACTIVE
;
136 IR_dprintk(1, "Warning: OEM nibbles 0x%02X. Expected 0x44\n",
139 scancode
= addr
<< 24 | subaddr
<< 16 |
141 IR_dprintk(1, "XMP scancode 0x%06x\n", scancode
);
144 rc_keydown(dev
, RC_PROTO_XMP
, scancode
, 0);
147 IR_dprintk(1, "Repeat last key\n");
149 data
->state
= STATE_INACTIVE
;
153 } else if (geq_margin(ev
.duration
, XMP_HALFFRAME_SPACE
, XMP_NIBBLE_PREFIX
)) {
154 /* Expect 8 or 16 nibble pulses. 16 in case of 'final' frame */
155 if (data
->count
== 16) {
156 IR_dprintk(2, "received half frame pulse at index %d. Probably a final frame key-up event: %u\n",
157 data
->count
, ev
.duration
);
159 * TODO: for now go back to half frame position
160 * so trailer can be found and key press
166 else if (data
->count
!= 8)
167 IR_dprintk(2, "received half frame pulse at index %d: %u\n",
168 data
->count
, ev
.duration
);
169 data
->state
= STATE_LEADER_PULSE
;
173 } else if (geq_margin(ev
.duration
, XMP_NIBBLE_PREFIX
, XMP_UNIT
)) {
174 /* store nibble raw data, decode after trailer */
175 if (data
->count
== 16) {
176 IR_dprintk(2, "to many pulses (%d) ignoring: %u\n",
177 data
->count
, ev
.duration
);
178 data
->state
= STATE_INACTIVE
;
181 data
->durations
[data
->count
] = ev
.duration
;
183 data
->state
= STATE_LEADER_PULSE
;
192 IR_dprintk(1, "XMP decode failed at count %d state %d (%uus %s)\n",
193 data
->count
, data
->state
, TO_US(ev
.duration
), TO_STR(ev
.pulse
));
194 data
->state
= STATE_INACTIVE
;
198 static struct ir_raw_handler xmp_handler
= {
199 .protocols
= RC_PROTO_BIT_XMP
,
200 .decode
= ir_xmp_decode
,
203 static int __init
ir_xmp_decode_init(void)
205 ir_raw_handler_register(&xmp_handler
);
207 printk(KERN_INFO
"IR XMP protocol handler initialized\n");
211 static void __exit
ir_xmp_decode_exit(void)
213 ir_raw_handler_unregister(&xmp_handler
);
216 module_init(ir_xmp_decode_init
);
217 module_exit(ir_xmp_decode_exit
);
219 MODULE_LICENSE("GPL");
220 MODULE_AUTHOR("Marcel Mol <marcel@mesa.nl>");
221 MODULE_AUTHOR("MESA Consulting (http://www.mesa.nl)");
222 MODULE_DESCRIPTION("XMP IR protocol decoder");